Skip to content

tuple_radTupleRadTupleRadtuple_radtuple_rad🔗

Short description🔗

tuple_radTupleRadTupleRadtuple_radtuple_rad — Convert a tuple from degrees to radians.

Signature🔗

tuple_rad( number Deg, out number Rad )void TupleRad( const HTuple& Deg, HTuple* Rad )static void HOperatorSet.TupleRad( HTuple deg, out HTuple rad )def tuple_rad( deg: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_rad_s( deg: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_rad( double Deg, double* Rad )

Herror T_tuple_rad( const Htuple Deg, Htuple* Rad )

HTuple HTuple::TupleRad( ) const

HTuple HTuple.TupleRad( )

Description🔗

tuple_radTupleRad converts the input tuple Degdegdeg from degrees to radians. The result is always returned as a floating point number. The conversion of a string is not allowed.

Exception: Empty input tuple🔗

If the input tuple is empty, the operator returns an empty tuple.

HDevelop In-line Operation🔗

HDevelop provides an in-line operation for tuple_radTupleRad, which can be used in an expression in the following syntax:

Rad := rad(Deg)

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

Parameters🔗

Degdegdeg (input_control) number(-array) → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)MaybeSequence[Union[float, int]]Htuple (double / Hlong)

Input tuple.

Radradrad (output_control) number(-array) → (real)HTuple (double)HTuple (double)Sequence[float]Htuple (double)

Input tuple in radians.

Combinations with other operators🔗

Combinations

See also

tuple_degTupleDeg

Module🔗

Foundation