Example #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();
}
Example #2
0
//------------------------------------------------------------------------------
bool RadToDeg::ValidateInputs()
{
   return ValidateScalarInputs();
}
Example #3
0
//------------------------------------------------------------------------------
bool Acos::ValidateInputs()
{
   return ValidateScalarInputs();
}
Example #4
0
//------------------------------------------------------------------------------
bool Tan::ValidateInputs()
{
   return ValidateScalarInputs();
}