MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / Transform3D

Method Transform3D

TSMatrix4D.cpp:348–364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346
347
348Transform3D::Transform3D(float n00, float n01, float n02, float n03, float n10, float n11, float n12, float n13, float n20, float n21, float n22, float n23)
349{
350 m00 = n00;
351 m01 = n01;
352 m02 = n02;
353 m03 = n03;
354 m10 = n10;
355 m11 = n11;
356 m12 = n12;
357 m13 = n13;
358 m20 = n20;
359 m21 = n21;
360 m22 = n22;
361 m23 = n23;
362
363 row3.Set(0.0F, 0.0F, 0.0F, 1.0F);
364}
365
366Transform3D::Transform3D(const Vector3D& a, const Vector3D& b, const Vector3D& c, const Point3D& p)
367{

Callers

nothing calls this directly

Calls 1

SetMethod · 0.45

Tested by

no test coverage detected