MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / export_vertices

Method export_vertices

tools/Wires/WireNetwork/SVGParser.cpp:152–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150}
151
152void SVGParser::export_vertices(Float* buffer) const {
153 size_t i=0;
154 for (const auto& v : m_vertices) {
155 buffer[i*2] = v[0];
156 buffer[i*2+1] = v[1];
157 i++;
158 }
159}
160
161void SVGParser::export_edges(int* buffer) const {
162 size_t i=0;

Callers 5

WireNetworkMethod · 0.45
TEST_FFunction · 0.45
OBJParserTest.hFile · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45

Calls

no outgoing calls

Tested by 3

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36