Beispiel #1
0
//------------------------------------------------------------------------------
bool Atan2::ValidateInputs()
{
   if (leftNode == NULL)
      throw MathException("Atan2() - Missing input arguments");
   
   if (rightNode == NULL)
      throw MathException("Atan2() - Not enough input arguments");
   
   return ValidateScalarInputs();
}
Beispiel #2
0
//------------------------------------------------------------------------------
bool RadToDeg::ValidateInputs()
{
   return ValidateScalarInputs();
}
Beispiel #3
0
//------------------------------------------------------------------------------
bool Acos::ValidateInputs()
{
   return ValidateScalarInputs();
}
Beispiel #4
0
//------------------------------------------------------------------------------
bool Tan::ValidateInputs()
{
   return ValidateScalarInputs();
}