applyPerspective static method

void applyPerspective(
  1. List<double> m,
  2. double perspective
)

Implementation

static void applyPerspective(List<double> m, double perspective) {
  m[11] = -1 / perspective;
}