mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-30 04:02:52 -06:00
#7015 - Fixed typo in AMFParserContext::endElement()
This commit is contained in:
parent
8ecdea152f
commit
1196251d51
1 changed files with 1 additions and 1 deletions
|
|
@ -598,7 +598,7 @@ void AMFParserContext::endElement(const char * /* name */)
|
||||||
case NODE_TYPE_VERTEX:
|
case NODE_TYPE_VERTEX:
|
||||||
assert(m_object);
|
assert(m_object);
|
||||||
// Parse the vertex data
|
// Parse the vertex data
|
||||||
m_object_vertices.emplace_back(float(atof(m_value[0].c_str())), float(atof(m_value[1].c_str())), float(atof(m_value[1].c_str())));
|
m_object_vertices.emplace_back(float(atof(m_value[0].c_str())), float(atof(m_value[1].c_str())), float(atof(m_value[2].c_str())));
|
||||||
m_value[0].clear();
|
m_value[0].clear();
|
||||||
m_value[1].clear();
|
m_value[1].clear();
|
||||||
m_value[2].clear();
|
m_value[2].clear();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue