Vector.RadToDeg Method

Overload List

#SignatureDescription
1TMtxVec RadToDegConvert radians to degrees (in-place).
└ indexed: TMtxVec RadToDeg(Int32 Index, Int32 Len)
2TMtxVec RadToDeg(TMtxVec X)Convert X elements from radians to degrees and store in self.
└ indexed: TMtxVec RadToDeg(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)

Overload 1: TMtxVec RadToDeg

Convert radians to degrees (in-place).

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

Indexed: TMtxVec RadToDeg(Int32 Index, Int32 Len)

Convert radians to degrees on elements [Index..Index+Len-1] in-place.

#NameTypeDescription
1IndexInt32start index
2LenInt32element count

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

Overload 2: TMtxVec RadToDeg(TMtxVec X)

Convert X elements from radians to degrees and store in self.

#NameTypeDescription
1XTMtxVecsource TVec or TMtx

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

Indexed: TMtxVec RadToDeg(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)

Convert X elements [XIndex..XIndex+Len-1] from radians to degrees and store in self elements [Index..Index+Len-1].

#NameTypeDescription
1XTMtxVecsource TVec or TMtx
2XIndexInt32X start index
3IndexInt32start index
4LenInt32element count

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