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