MCPcopy Create free account
hub / github.com/demoth/jake2 / VectorEquals

Method VectorEquals

qcommon/src/main/java/jake2/qcommon/util/Math3D.java:78–80  ·  view source on GitHub ↗
(float[] v1, float[] v2)

Source from the content-addressed store, hash-verified

76 }
77
78 public static boolean VectorEquals(float[] v1, float[] v2) {
79 return (v1[0] == v2[0] && v1[1] == v2[1] && v1[2] == v2[2]);
80 }
81 public static void VectorNegate(float[] from, float[] to) {
82 to[0] = -from[0];
83 to[1] = -from[1];

Callers 10

SV_FlyMoveMethod · 0.95
G_SetMovedirMethod · 0.95
thinkMethod · 0.95
fire_leadMethod · 0.95
AddPlayerBeamsMethod · 0.95
triggerMultipleFunction · 0.80
triggers.ktFile · 0.80
initTriggerFunction · 0.80
rotating.ktFile · 0.80
door.ktFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected