MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / Wedge

Method Wedge

TSConformal2D.cpp:79–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77// ==============================================
78
79Dipole2D Terathon::Wedge(const RoundPoint2D& a, const RoundPoint2D& b)
80{
81 return (Dipole2D(a.y * b.z - a.z * b.y,
82 a.z * b.x - a.x * b.z,
83 a.x * b.y - a.y * b.x,
84
85 a.w * b.x - a.x * b.w,
86 a.w * b.y - a.y * b.w,
87 a.w * b.z - a.z * b.w));
88}
89
90Line2D Terathon::Wedge(const FlatPoint2D& p, const RoundPoint2D& a)
91{

Callers

nothing calls this directly

Calls 3

Dipole2DClass · 0.85
Line2DClass · 0.85
Circle2DClass · 0.85

Tested by

no test coverage detected