TVec.DegToRad Method

Overload List

#SignatureDescription
1function DegToRad: TMtxVec;DegToRad converts degrees to radians.
└ indexed: function DegToRad(Index: Integer; Len: Integer): TMtxVec;
2function DegToRad(const X: TMtxVec): TMtxVec;DegToRad converts the degrees to radians for all X object elements.
└ indexed: function DegToRad(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;

Overload 1: function DegToRad: TMtxVec;

DegToRad converts degrees to radians.

Result: stored in self (calling object), returns self for chaining

Returns: DegToRad converts degrees to radians for all calling object elements in-place. The following transformation is used: Radians = PI*180*Degrees

Indexed: function DegToRad(Index: Integer; Len: Integer): TMtxVec;

DegToRad converts the degrees for calling object elements [Index]..[Index+Len-1] in-place to radians.

#NameTypeDescription
1IndexIntegerstart index
2LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

An exception is raised, if array borders are overrun or underrun.

Overload 2: function DegToRad(const X: TMtxVec): TMtxVec;

DegToRad converts the degrees to radians for all X object elements.

#NameTypeDescription
1XTMtxVecsource TVec or TMtx

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the results in the calling object. Size and TMtxVec.Complex properties of calling object are adjusted automatically.

Indexed: function DegToRad(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;

DegToRad converts degrees to radians for all X object elements [XIndex]..[XIndex+Len-1].

#NameTypeDescription
1XTMtxVecsource TVec or TMtx
2XIndexIntegerX start index
3IndexIntegerstart index
4LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the results in the calling object elements [Index]..[Index+Len-1]. An exception is raised, if array borders are overrun or underrun.