lookupPerspectiveTransformations static method

Vector3 lookupPerspectiveTransformations(
  1. Matrix4 matrix
)

Implementation

static Vector3 lookupPerspectiveTransformations(Matrix4 matrix) => Vector3(
      matrix[3], //
      matrix[7],
      matrix[11],
    );