* convert the object to a string representation * @returns stringified representation
()
| 861 | * @returns stringified representation |
| 862 | */ |
| 863 | toString() { |
| 864 | const a = this.val; |
| 865 | |
| 866 | return `Matrix3d(${a[0]}, ${a[1]}, ${a[2]}, ${a[3]}, ${a[4]}, ${a[5]}, ${ |
| 867 | a[6] |
| 868 | }, ${a[7]}, ${a[8]}, ${a[9]}, ${a[10]}, ${a[11]}, ${a[12]}, ${a[13]}, ${ |
| 869 | a[14] |
| 870 | }, ${a[15]})`; |
| 871 | } |
| 872 | } |
| 873 | |
| 874 | export const matrix3dPool = createPool<Matrix3d, ConstructorArg>( |
no outgoing calls