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

Method Antiwedge

TSConformal2D.cpp:116–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114// ==============================================
115
116Dipole2D Terathon::Antiwedge(const Circle2D& c, const Circle2D& o)
117{
118 return (Dipole2D(c.x * o.w - c.w * o.x,
119 c.y * o.w - c.w * o.y,
120 c.z * o.w - c.w * o.z,
121
122 c.z * o.y - c.y * o.z,
123 c.x * o.z - c.z * o.x,
124 c.y * o.x - c.x * o.y));
125}
126
127Dipole2D Terathon::Antiwedge(const Circle2D& c, const Line2D& g)
128{

Callers

nothing calls this directly

Calls 2

Dipole2DClass · 0.85
RoundPoint2DClass · 0.85

Tested by

no test coverage detected