MCPcopy Create free account
hub / github.com/crossuo/crossuo / Merge

Method Merge

src/Vector.cpp:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void CVector::Merge(const CVector &v)
43{
44 double newX = Y * v.Z - Z * v.Y;
45 double newY = Z * v.X - X * v.Z;
46 double newZ = X * v.Y - Y * v.X;
47
48 X = newX;
49 Y = newY;
50 Z = newZ;
51}
52
53void CVector::Merge(double x, double y, double z)
54{

Callers 1

CreateLandTextureRectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected