MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / lengthSquared

Method lengthSquared

src/main/java/field/linalg/Vec3.java:1027–1030  ·  view source on GitHub ↗

Return the length squared of this vector. @return the length squared

()

Source from the content-addressed store, hash-verified

1025 * @return the length squared
1026 */
1027 @SafeToToString
1028 public double lengthSquared() {
1029 return x * x + y * y + z * z;
1030 }
1031
1032 /**
1033 * Return the length of this vector.

Callers 2

circumcenterOfMethod · 0.95
lengthMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected