MCPcopy Create free account
hub / github.com/brenocq/implot3d / Dot

Method Dot

implot3d.cpp:3480–3480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3478bool ImPlot3DPoint::operator!=(const ImPlot3DPoint& rhs) const { return !(*this == rhs); }
3479
3480double ImPlot3DPoint::Dot(const ImPlot3DPoint& rhs) const { return x * rhs.x + y * rhs.y + z * rhs.z; }
3481
3482ImPlot3DPoint ImPlot3DPoint::Cross(const ImPlot3DPoint& rhs) const {
3483 return ImPlot3DPoint(y * rhs.z - z * rhs.y, z * rhs.x - x * rhs.z, x * rhs.y - y * rhs.x);

Callers 3

CalcAnimationTimeFunction · 0.80
HandleInputFunction · 0.80
FromTwoVectorsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected