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

Method set

src/main/java/field/linalg/Quat.java:271–277  ·  view source on GitHub ↗

Set this quaternion to the new values. @param x the new value of x @param y the new value of y @param z the new value of z @param w the new value of w @return this

(double x, double y, double z, double w)

Source from the content-addressed store, hash-verified

269 * @param w the new value of w
270 * @return this
271 */
272 public Quat set(double x, double y, double z, double w) {
273 this.x = x;
274 this.y = y;
275 this.z = z;
276 this.w = w;
277 return this;
278 }
279
280 /**

Callers

nothing calls this directly

Calls 1

setAngleAxisMethod · 0.95

Tested by

no test coverage detected