AMF: fixes.
parent
0b8ed5c03a
commit
075540e15a
|
@ -58,8 +58,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
|
||||||
/// \var aiImporterDesc AMFImporter::Description
|
|
||||||
/// Conastant which hold importer description
|
|
||||||
const aiImporterDesc AMFImporter::Description = {
|
const aiImporterDesc AMFImporter::Description = {
|
||||||
"Additive manufacturing file format(AMF) Importer",
|
"Additive manufacturing file format(AMF) Importer",
|
||||||
"smalcom",
|
"smalcom",
|
||||||
|
|
|
@ -159,13 +159,10 @@ void AMFImporter::ParseNode_Coordinates(XmlNode &node) {
|
||||||
|
|
||||||
AMFCoordinates &als = *((AMFCoordinates *)ne); // alias for convenience
|
AMFCoordinates &als = *((AMFCoordinates *)ne); // alias for convenience
|
||||||
|
|
||||||
if (node.attributes().begin() != node.attributes().end()) {
|
als.Coordinate.x = (ai_real)node.attribute("x").as_float();
|
||||||
als.Coordinate.x = (ai_real)node.attribute("x").as_float();
|
als.Coordinate.y = (ai_real)node.attribute("y").as_float();
|
||||||
als.Coordinate.y = (ai_real)node.attribute("y").as_float();
|
als.Coordinate.z = (ai_real)node.attribute("z").as_float();
|
||||||
als.Coordinate.z = (ai_real)node.attribute("z").as_float();
|
mNodeElement_Cur->Child.push_back(ne);
|
||||||
} else {
|
|
||||||
mNodeElement_Cur->Child.push_back(ne);
|
|
||||||
}
|
|
||||||
|
|
||||||
mNodeElement_List.push_back(ne); // and to node element list because its a new object in graph.
|
mNodeElement_List.push_back(ne); // and to node element list because its a new object in graph.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue