MCPcopy Create free account
hub / github.com/GilesBathgate/RapCAD / createTriangle

Method createTriangle

src/module/primitivemodule.cpp:94–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94void PrimitiveModule::createTriangle(Primitive* p,int a,int b,int c)
95{
96 Polygon& pg=p->createPolygon();
97 pg.append(a);
98 pg.append(b);
99 pg.append(c);
100}
101
102void PrimitiveModule::createQuad(Primitive* p,int a,int b,int c,int d)
103{

Callers

nothing calls this directly

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected