diff --git a/CHANGES b/CHANGES index 0ff79cbe1..0c734162b 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,22 @@ CHANGELOG ---------------------------------------------------------------------- +3.2.1 (2016-10-01) + +FEATURES: + - Updated glTF exporter to meet 1.0 specification. + +FIXES/HOUSEKEEPING: + - Fixed glTF Validator errors for exported glTF format. + +ISSUES: + - Hard coded sampler setting for + - magFilter + - minFilter + - void* in ExportData for accessor max and min. + + + 3.2.0 (2015-11-03) FEATURES: diff --git a/code/AMFImporter.cpp b/code/AMFImporter.cpp index 92fb7d552..d68e01904 100644 --- a/code/AMFImporter.cpp +++ b/code/AMFImporter.cpp @@ -1,4 +1,45 @@ -/// \file AMFImporter.cpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter.cpp /// \brief AMF-format files importer for Assimp: main algorithm implementation. /// \date 2016 /// \author smal.root@gmail.com diff --git a/code/AMFImporter.hpp b/code/AMFImporter.hpp index bee0f35c9..64f9e6230 100644 --- a/code/AMFImporter.hpp +++ b/code/AMFImporter.hpp @@ -1,9 +1,51 @@ +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + /// \file AMFImporter.hpp /// \brief AMF-format files importer for Assimp. /// \date 2016 /// \author smal.root@gmail.com // Thanks to acorn89 for support. +#pragma once #ifndef INCLUDED_AI_AMF_IMPORTER_H #define INCLUDED_AI_AMF_IMPORTER_H diff --git a/code/AMFImporter_Geometry.cpp b/code/AMFImporter_Geometry.cpp index 6d04101ff..493d06bff 100644 --- a/code/AMFImporter_Geometry.cpp +++ b/code/AMFImporter_Geometry.cpp @@ -1,4 +1,45 @@ -/// \file AMFImporter_Geometry.cpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter_Geometry.cpp /// \brief Parsing data from geometry nodes. /// \date 2016 /// \author smal.root@gmail.com diff --git a/code/AMFImporter_Macro.hpp b/code/AMFImporter_Macro.hpp index 33fadd223..973e17490 100644 --- a/code/AMFImporter_Macro.hpp +++ b/code/AMFImporter_Macro.hpp @@ -1,8 +1,50 @@ -/// \file AMFImporter_Macro.hpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter_Macro.hpp /// \brief Useful macrodefines. /// \date 2016 /// \author smal.root@gmail.com +#pragma once #ifndef AMFIMPORTER_MACRO_HPP_INCLUDED #define AMFIMPORTER_MACRO_HPP_INCLUDED diff --git a/code/AMFImporter_Material.cpp b/code/AMFImporter_Material.cpp index 5f379ec0c..4550f6fe2 100644 --- a/code/AMFImporter_Material.cpp +++ b/code/AMFImporter_Material.cpp @@ -1,4 +1,45 @@ -/// \file AMFImporter_Material.cpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter_Material.cpp /// \brief Parsing data from material nodes. /// \date 2016 /// \author smal.root@gmail.com diff --git a/code/AMFImporter_Node.hpp b/code/AMFImporter_Node.hpp index 7d57cc086..f8c3a7933 100644 --- a/code/AMFImporter_Node.hpp +++ b/code/AMFImporter_Node.hpp @@ -1,8 +1,50 @@ -/// \file AMFImporter_Node.hpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter_Node.hpp /// \brief Elements of scene graph. /// \date 2016 /// \author smal.root@gmail.com +#pragma once #ifndef INCLUDED_AI_AMF_IMPORTER_NODE_H #define INCLUDED_AI_AMF_IMPORTER_NODE_H diff --git a/code/AMFImporter_Postprocess.cpp b/code/AMFImporter_Postprocess.cpp index dbee3d446..8b4816efb 100644 --- a/code/AMFImporter_Postprocess.cpp +++ b/code/AMFImporter_Postprocess.cpp @@ -1,4 +1,45 @@ -/// \file AMFImporter_Postprocess.cpp +/* +--------------------------------------------------------------------------- +Open Asset Import Library (assimp) +--------------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team + +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following +conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------- +*/ + +/// \file AMFImporter_Postprocess.cpp /// \brief Convert built scenegraph and objects to Assimp scenegraph. /// \date 2016 /// \author smal.root@gmail.com diff --git a/code/BlenderScene.cpp b/code/BlenderScene.cpp index 8d6e96eb5..70b0c108f 100644 --- a/code/BlenderScene.cpp +++ b/code/BlenderScene.cpp @@ -806,4 +806,4 @@ void DNA::RegisterConverters() { } -#endif ASSIMP_BUILD_NO_BLEND_IMPORTER +#endif // ASSIMP_BUILD_NO_BLEND_IMPORTER diff --git a/code/Exporter.cpp b/code/Exporter.cpp index 6bb1b2258..26cb5e998 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -140,9 +140,9 @@ Exporter::ExportFormatEntry gExporters[] = #ifndef ASSIMP_BUILD_NO_GLTF_EXPORTER Exporter::ExportFormatEntry( "gltf", "GL Transmission Format", "gltf", &ExportSceneGLTF, - aiProcess_JoinIdenticalVertices | aiProcess_Triangulate /*| aiProcess_SortByPType*/), + aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType), Exporter::ExportFormatEntry( "glb", "GL Transmission Format (binary)", "glb", &ExportSceneGLB, - aiProcess_JoinIdenticalVertices | aiProcess_Triangulate /*| aiProcess_SortByPType*/), + aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType), #endif #ifndef ASSIMP_BUILD_NO_ASSBIN_EXPORTER diff --git a/code/ObjFileParser.cpp b/code/ObjFileParser.cpp index 4c3232fa7..49dce5108 100644 --- a/code/ObjFileParser.cpp +++ b/code/ObjFileParser.cpp @@ -140,6 +140,9 @@ void ObjFileParser::parseFile() if (numComponents == 3) { // read in vertex definition getVector3(m_pModel->m_Vertices); + } else if (numComponents == 4) { + // read in vertex definition (homogeneous coords) + getHomogeneousVector3(m_pModel->m_Vertices); } else if (numComponents == 6) { // read vertex and vertex-color getTwoVectors3(m_pModel->m_Vertices, m_pModel->m_VertexColors); @@ -320,6 +323,26 @@ void ObjFileParser::getVector3( std::vector &point3d_array ) { m_DataIt = skipLine( m_DataIt, m_DataItEnd, m_uiLine ); } +void ObjFileParser::getHomogeneousVector3( std::vector &point3d_array ) { + ai_real x, y, z, w; + copyNextWord(m_buffer, Buffersize); + x = (ai_real) fast_atof(m_buffer); + + copyNextWord(m_buffer, Buffersize); + y = (ai_real) fast_atof(m_buffer); + + copyNextWord( m_buffer, Buffersize ); + z = ( ai_real ) fast_atof( m_buffer ); + + copyNextWord( m_buffer, Buffersize ); + w = ( ai_real ) fast_atof( m_buffer ); + + ai_assert( w != 0 ); + + point3d_array.push_back( aiVector3D( x/w, y/w, z/w ) ); + m_DataIt = skipLine( m_DataIt, m_DataItEnd, m_uiLine ); +} + // ------------------------------------------------------------------- // Get values for two 3D vectors on the same line void ObjFileParser::getTwoVectors3( std::vector &point3d_array_a, std::vector &point3d_array_b ) { diff --git a/code/ObjFileParser.h b/code/ObjFileParser.h index f1be764f0..ce7c34655 100644 --- a/code/ObjFileParser.h +++ b/code/ObjFileParser.h @@ -89,6 +89,8 @@ private: void getVector( std::vector &point3d_array ); /// Stores the following 3d vector. void getVector3( std::vector &point3d_array ); + /// Stores the following homogeneous vector as a 3D vector + void getHomogeneousVector3( std::vector &point3d_array ); /// Stores the following two 3d vectors on the line. void getTwoVectors3( std::vector &point3d_array_a, std::vector &point3d_array_b ); /// Stores the following 3d vector. diff --git a/code/TinyFormatter.h b/code/TinyFormatter.h index 7a5e7d21f..1182e3a5a 100644 --- a/code/TinyFormatter.h +++ b/code/TinyFormatter.h @@ -49,7 +49,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include namespace Assimp { - namespace Formatter { +namespace Formatter { // ------------------------------------------------------------------------------------------------ /** stringstream utility. Usage: @@ -160,4 +160,5 @@ typedef basic_formatter< wchar_t > wformat; } // ! namespace Formatter } // ! namespace Assimp + #endif diff --git a/code/X3DImporter.cpp b/code/X3DImporter.cpp index 49a26ed5e..024eedb28 100644 --- a/code/X3DImporter.cpp +++ b/code/X3DImporter.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter.cpp /// \brief X3D-format files importer for Assimp: main algorithm implementation. /// \date 2015-2016 @@ -100,8 +139,8 @@ fne_fn_end: bool X3DImporter::FindNodeElement(const std::string& pID, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement) { -CX3DImporter_NodeElement* tnd = NodeElement_Cur;// temporary pointer to node. -bool static_search = false;// flag: true if searching in static node. + CX3DImporter_NodeElement* tnd = NodeElement_Cur;// temporary pointer to node. + bool static_search = false;// flag: true if searching in static node. // At first check if we have deal with static node. Go up thru parent nodes and check flag. while(tnd != nullptr) @@ -187,86 +226,86 @@ void X3DImporter::XML_CheckNode_MustBeEmpty() void X3DImporter::XML_CheckNode_SkipUnsupported(const std::string& pParentNodeName) { -const size_t Uns_Skip_Len = 189; -const char* Uns_Skip[Uns_Skip_Len] = { - // CAD geometry component - "CADAssembly", "CADFace", "CADLayer", "CADPart", "IndexedQuadSet", "QuadSet", - // Core - "ROUTE", "ExternProtoDeclare", "ProtoDeclare", "ProtoInstance", "ProtoInterface", "WorldInfo", - // Distributed interactive simulation (DIS) component - "DISEntityManager", "DISEntityTypeMapping", "EspduTransform", "ReceiverPdu", "SignalPdu", "TransmitterPdu", - // Cube map environmental texturing component - "ComposedCubeMapTexture", "GeneratedCubeMapTexture", "ImageCubeMapTexture", - // Environmental effects component - "Background", "Fog", "FogCoordinate", "LocalFog", "TextureBackground", - // Environmental sensor component - "ProximitySensor", "TransformSensor", "VisibilitySensor", - // Followers component - "ColorChaser", "ColorDamper", "CoordinateChaser", "CoordinateDamper", "OrientationChaser", "OrientationDamper", "PositionChaser", "PositionChaser2D", - "PositionDamper", "PositionDamper2D", "ScalarChaser", "ScalarDamper", "TexCoordChaser2D", "TexCoordDamper2D", - // Geospatial component - "GeoCoordinate", "GeoElevationGrid", "GeoLocation", "GeoLOD", "GeoMetadata", "GeoOrigin", "GeoPositionInterpolator", "GeoProximitySensor", - "GeoTouchSensor", "GeoTransform", "GeoViewpoint", - // Humanoid Animation (H-Anim) component - "HAnimDisplacer", "HAnimHumanoid", "HAnimJoint", "HAnimSegment", "HAnimSite", - // Interpolation component - "ColorInterpolator", "CoordinateInterpolator", "CoordinateInterpolator2D", "EaseInEaseOut", "NormalInterpolator", "OrientationInterpolator", - "PositionInterpolator", "PositionInterpolator2D", "ScalarInterpolator", "SplinePositionInterpolator", "SplinePositionInterpolator2D", - "SplineScalarInterpolator", "SquadOrientationInterpolator", - // Key device sensor component - "KeySensor", "StringSensor" - // Layering component - "Layer", "LayerSet", "Viewport", - // Layout component - "Layout", "LayoutGroup", "LayoutLayer", "ScreenFontStyle", "ScreenGroup", - // Navigation component - "Billboard", "Collision", "LOD", "NavigationInfo", "OrthoViewpoint", "Viewpoint", "ViewpointGroup", - // Networking component - "Anchor", "LoadSensor", - // NURBS component - "Contour2D", "ContourPolyline2D", "CoordinateDouble", "NurbsCurve", "NurbsCurve2D", "NurbsOrientationInterpolator", "NurbsPatchSurface", - "NurbsPositionInterpolator", "NurbsSet", "NurbsSurfaceInterpolator", "NurbsSweptSurface", "NurbsSwungSurface", "NurbsTextureCoordinate", - "NurbsTrimmedSurface", - // Particle systems component - "BoundedPhysicsModel", "ConeEmitter", "ExplosionEmitter", "ForcePhysicsModel", "ParticleSystem", "PointEmitter", "PolylineEmitter", "SurfaceEmitter", - "VolumeEmitter", "WindPhysicsModel", - // Picking component - "LinePickSensor", "PickableGroup", "PointPickSensor", "PrimitivePickSensor", "VolumePickSensor", - // Pointing device sensor component - "CylinderSensor", "PlaneSensor", "SphereSensor", "TouchSensor", - // Rendering component - "ClipPlane", - // Rigid body physics - "BallJoint", "CollidableOffset", "CollidableShape", "CollisionCollection", "CollisionSensor", "CollisionSpace", "Contact", "DoubleAxisHingeJoint", - "MotorJoint", "RigidBody", "RigidBodyCollection", "SingleAxisHingeJoint", "SliderJoint", "UniversalJoint", - // Scripting component - "Script", - // Programmable shaders component - "ComposedShader", "FloatVertexAttribute", "Matrix3VertexAttribute", "Matrix4VertexAttribute", "PackagedShader", "ProgramShader", "ShaderPart", - "ShaderProgram", - // Shape component - "FillProperties", "LineProperties", "TwoSidedMaterial", - // Sound component - "AudioClip", "Sound", - // Text component - "FontStyle", "Text", - // Texturing3D Component - "ComposedTexture3D", "ImageTexture3D", "PixelTexture3D", "TextureCoordinate3D", "TextureCoordinate4D", "TextureTransformMatrix3D", "TextureTransform3D", - // Texturing component - "MovieTexture", "MultiTexture", "MultiTextureCoordinate", "MultiTextureTransform", "PixelTexture", "TextureCoordinateGenerator", "TextureProperties", - // Time component - "TimeSensor", - // Event Utilities component - "BooleanFilter", "BooleanSequencer", "BooleanToggle", "BooleanTrigger", "IntegerSequencer", "IntegerTrigger", "TimeTrigger", - // Volume rendering component - "BlendedVolumeStyle", "BoundaryEnhancementVolumeStyle", "CartoonVolumeStyle", "ComposedVolumeStyle", "EdgeEnhancementVolumeStyle", "IsoSurfaceVolumeData", - "OpacityMapVolumeStyle", "ProjectionVolumeStyle", "SegmentedVolumeData", "ShadedVolumeStyle", "SilhouetteEnhancementVolumeStyle", "ToneMappedVolumeStyle", - "VolumeData" -}; + const size_t Uns_Skip_Len = 189; + const char* Uns_Skip[ Uns_Skip_Len ] = { + // CAD geometry component + "CADAssembly", "CADFace", "CADLayer", "CADPart", "IndexedQuadSet", "QuadSet", + // Core + "ROUTE", "ExternProtoDeclare", "ProtoDeclare", "ProtoInstance", "ProtoInterface", "WorldInfo", + // Distributed interactive simulation (DIS) component + "DISEntityManager", "DISEntityTypeMapping", "EspduTransform", "ReceiverPdu", "SignalPdu", "TransmitterPdu", + // Cube map environmental texturing component + "ComposedCubeMapTexture", "GeneratedCubeMapTexture", "ImageCubeMapTexture", + // Environmental effects component + "Background", "Fog", "FogCoordinate", "LocalFog", "TextureBackground", + // Environmental sensor component + "ProximitySensor", "TransformSensor", "VisibilitySensor", + // Followers component + "ColorChaser", "ColorDamper", "CoordinateChaser", "CoordinateDamper", "OrientationChaser", "OrientationDamper", "PositionChaser", "PositionChaser2D", + "PositionDamper", "PositionDamper2D", "ScalarChaser", "ScalarDamper", "TexCoordChaser2D", "TexCoordDamper2D", + // Geospatial component + "GeoCoordinate", "GeoElevationGrid", "GeoLocation", "GeoLOD", "GeoMetadata", "GeoOrigin", "GeoPositionInterpolator", "GeoProximitySensor", + "GeoTouchSensor", "GeoTransform", "GeoViewpoint", + // Humanoid Animation (H-Anim) component + "HAnimDisplacer", "HAnimHumanoid", "HAnimJoint", "HAnimSegment", "HAnimSite", + // Interpolation component + "ColorInterpolator", "CoordinateInterpolator", "CoordinateInterpolator2D", "EaseInEaseOut", "NormalInterpolator", "OrientationInterpolator", + "PositionInterpolator", "PositionInterpolator2D", "ScalarInterpolator", "SplinePositionInterpolator", "SplinePositionInterpolator2D", + "SplineScalarInterpolator", "SquadOrientationInterpolator", + // Key device sensor component + "KeySensor", "StringSensor" + // Layering component + "Layer", "LayerSet", "Viewport", + // Layout component + "Layout", "LayoutGroup", "LayoutLayer", "ScreenFontStyle", "ScreenGroup", + // Navigation component + "Billboard", "Collision", "LOD", "NavigationInfo", "OrthoViewpoint", "Viewpoint", "ViewpointGroup", + // Networking component + "Anchor", "LoadSensor", + // NURBS component + "Contour2D", "ContourPolyline2D", "CoordinateDouble", "NurbsCurve", "NurbsCurve2D", "NurbsOrientationInterpolator", "NurbsPatchSurface", + "NurbsPositionInterpolator", "NurbsSet", "NurbsSurfaceInterpolator", "NurbsSweptSurface", "NurbsSwungSurface", "NurbsTextureCoordinate", + "NurbsTrimmedSurface", + // Particle systems component + "BoundedPhysicsModel", "ConeEmitter", "ExplosionEmitter", "ForcePhysicsModel", "ParticleSystem", "PointEmitter", "PolylineEmitter", "SurfaceEmitter", + "VolumeEmitter", "WindPhysicsModel", + // Picking component + "LinePickSensor", "PickableGroup", "PointPickSensor", "PrimitivePickSensor", "VolumePickSensor", + // Pointing device sensor component + "CylinderSensor", "PlaneSensor", "SphereSensor", "TouchSensor", + // Rendering component + "ClipPlane", + // Rigid body physics + "BallJoint", "CollidableOffset", "CollidableShape", "CollisionCollection", "CollisionSensor", "CollisionSpace", "Contact", "DoubleAxisHingeJoint", + "MotorJoint", "RigidBody", "RigidBodyCollection", "SingleAxisHingeJoint", "SliderJoint", "UniversalJoint", + // Scripting component + "Script", + // Programmable shaders component + "ComposedShader", "FloatVertexAttribute", "Matrix3VertexAttribute", "Matrix4VertexAttribute", "PackagedShader", "ProgramShader", "ShaderPart", + "ShaderProgram", + // Shape component + "FillProperties", "LineProperties", "TwoSidedMaterial", + // Sound component + "AudioClip", "Sound", + // Text component + "FontStyle", "Text", + // Texturing3D Component + "ComposedTexture3D", "ImageTexture3D", "PixelTexture3D", "TextureCoordinate3D", "TextureCoordinate4D", "TextureTransformMatrix3D", "TextureTransform3D", + // Texturing component + "MovieTexture", "MultiTexture", "MultiTextureCoordinate", "MultiTextureTransform", "PixelTexture", "TextureCoordinateGenerator", "TextureProperties", + // Time component + "TimeSensor", + // Event Utilities component + "BooleanFilter", "BooleanSequencer", "BooleanToggle", "BooleanTrigger", "IntegerSequencer", "IntegerTrigger", "TimeTrigger", + // Volume rendering component + "BlendedVolumeStyle", "BoundaryEnhancementVolumeStyle", "CartoonVolumeStyle", "ComposedVolumeStyle", "EdgeEnhancementVolumeStyle", "IsoSurfaceVolumeData", + "OpacityMapVolumeStyle", "ProjectionVolumeStyle", "SegmentedVolumeData", "ShadedVolumeStyle", "SilhouetteEnhancementVolumeStyle", "ToneMappedVolumeStyle", + "VolumeData" + }; -std::string nn(mReader->getNodeName()); -bool found = false; -bool close_found = false; + const std::string nn( mReader->getNodeName() ); + bool found = false; + bool close_found = false; for(size_t i = 0; i < Uns_Skip_Len; i++) { @@ -326,8 +365,8 @@ std::string val(mReader->getAttributeValue(pAttrIdx)); float X3DImporter::XML_ReadNode_GetAttrVal_AsFloat(const int pAttrIdx) { -std::string val; -float tvalf; + std::string val; + float tvalf; ParseHelper_FixTruncatedFloatString(mReader->getAttributeValue(pAttrIdx), val); fast_atoreal_move(val.c_str(), tvalf, false); @@ -342,8 +381,8 @@ int32_t X3DImporter::XML_ReadNode_GetAttrVal_AsI32(const int pAttrIdx) void X3DImporter::XML_ReadNode_GetAttrVal_AsCol3f(const int pAttrIdx, aiColor3D& pValue) { -std::list tlist; -std::list::iterator it; + std::list tlist; + std::list::iterator it; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist); if(tlist.size() != 3) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); @@ -356,8 +395,8 @@ std::list::iterator it; void X3DImporter::XML_ReadNode_GetAttrVal_AsVec2f(const int pAttrIdx, aiVector2D& pValue) { -std::list tlist; -std::list::iterator it; + std::list tlist; + std::list::iterator it; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist); if(tlist.size() != 2) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); @@ -369,8 +408,8 @@ std::list::iterator it; void X3DImporter::XML_ReadNode_GetAttrVal_AsVec3f(const int pAttrIdx, aiVector3D& pValue) { -std::list tlist; -std::list::iterator it; + std::list tlist; + std::list::iterator it; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist); if(tlist.size() != 3) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); @@ -383,15 +422,14 @@ std::list::iterator it; void X3DImporter::XML_ReadNode_GetAttrVal_AsListB(const int pAttrIdx, std::list& pValue) { -char* tok_str; -size_t tok_str_len; - // make copy of attribute value - string with list of bool values. Also all bool values is strings. - tok_str_len = strlen(mReader->getAttributeValue(pAttrIdx)); - if(!tok_str_len) Throw_IncorrectAttrValue(mReader->getAttributeName(pAttrIdx)); + size_t tok_str_len = strlen(mReader->getAttributeValue(pAttrIdx)); + if ( 0 == tok_str_len ) { + Throw_IncorrectAttrValue( mReader->getAttributeName( pAttrIdx ) ); + } tok_str_len++;// take in account terminating '\0'. - tok_str = new char[tok_str_len]; + char *tok_str = new char[tok_str_len]; strcpy(tok_str, mReader->getAttributeValue(pAttrIdx)); // change all spacebars to symbol '\0'. That is needed for parsing. @@ -425,7 +463,7 @@ size_t tok_str_len; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrB(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListB(pAttrIdx, tlist);// read as list // and copy to array @@ -438,8 +476,8 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsListI32(const int pAttrIdx, std::list& pValue) { -const char* tstr = mReader->getAttributeValue(pAttrIdx); -const char* tstr_end = tstr + strlen(tstr); + const char* tstr = mReader->getAttributeValue(pAttrIdx); + const char* tstr_end = tstr + strlen(tstr); do { @@ -459,7 +497,7 @@ const char* tstr_end = tstr + strlen(tstr); void X3DImporter::XML_ReadNode_GetAttrVal_AsArrI32(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListI32(pAttrIdx, tlist);// read as list // and copy to array @@ -472,7 +510,7 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsListF(const int pAttrIdx, std::list& pValue) { -std::string str_fixed; + std::string str_fixed; // at first check string values like '.xxx'. ParseHelper_FixTruncatedFloatString(mReader->getAttributeValue(pAttrIdx), str_fixed); @@ -498,7 +536,7 @@ std::string str_fixed; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrF(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist);// read as list // and copy to array @@ -511,7 +549,7 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsListD(const int pAttrIdx, std::list& pValue) { -std::string str_fixed; + std::string str_fixed; // at first check string values like '.xxx'. ParseHelper_FixTruncatedFloatString(mReader->getAttributeValue(pAttrIdx), str_fixed); @@ -537,7 +575,7 @@ std::string str_fixed; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrD(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListD(pAttrIdx, tlist);// read as list // and copy to array @@ -550,7 +588,7 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsListCol3f(const int pAttrIdx, std::list& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist);// read as list if(tlist.size() % 3) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); @@ -569,7 +607,7 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrCol3f(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListCol3f(pAttrIdx, tlist);// read as list // and copy to array @@ -582,7 +620,7 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsListCol4f(const int pAttrIdx, std::list& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist);// read as list if(tlist.size() % 4) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); @@ -602,23 +640,29 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrCol4f(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListCol4f(pAttrIdx, tlist);// read as list // and copy to array if(tlist.size() > 0) { pValue.reserve(tlist.size()); - for(std::list::iterator it = tlist.begin(); it != tlist.end(); it++) pValue.push_back(*it); + for ( std::list::iterator it = tlist.begin(); it != tlist.end(); it++ ) + { + pValue.push_back( *it ); + } } } void X3DImporter::XML_ReadNode_GetAttrVal_AsListVec2f(const int pAttrIdx, std::list& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist);// read as list - if(tlist.size() % 2) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); + if ( tlist.size() % 2 ) + { + Throw_ConvertFail_Str2ArrF( mReader->getAttributeValue( pAttrIdx ) ); + } // copy data to array for(std::list::iterator it = tlist.begin(); it != tlist.end();) @@ -633,23 +677,29 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrVec2f(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListVec2f(pAttrIdx, tlist);// read as list // and copy to array if(tlist.size() > 0) { pValue.reserve(tlist.size()); - for(std::list::iterator it = tlist.begin(); it != tlist.end(); it++) pValue.push_back(*it); + for ( std::list::iterator it = tlist.begin(); it != tlist.end(); it++ ) + { + pValue.push_back( *it ); + } } } void X3DImporter::XML_ReadNode_GetAttrVal_AsListVec3f(const int pAttrIdx, std::list& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListF(pAttrIdx, tlist);// read as list - if(tlist.size() % 3) Throw_ConvertFail_Str2ArrF(mReader->getAttributeValue(pAttrIdx)); + if ( tlist.size() % 3 ) + { + Throw_ConvertFail_Str2ArrF( mReader->getAttributeValue( pAttrIdx ) ); + } // copy data to array for(std::list::iterator it = tlist.begin(); it != tlist.end();) @@ -665,30 +715,32 @@ std::list tlist; void X3DImporter::XML_ReadNode_GetAttrVal_AsArrVec3f(const int pAttrIdx, std::vector& pValue) { -std::list tlist; + std::list tlist; XML_ReadNode_GetAttrVal_AsListVec3f(pAttrIdx, tlist);// read as list // and copy to array if(tlist.size() > 0) { pValue.reserve(tlist.size()); - for(std::list::iterator it = tlist.begin(); it != tlist.end(); it++) pValue.push_back(*it); + for ( std::list::iterator it = tlist.begin(); it != tlist.end(); it++ ) + { + pValue.push_back( *it ); + } } } void X3DImporter::XML_ReadNode_GetAttrVal_AsListS(const int pAttrIdx, std::list& pValue) { -char* tok_str; -char* tok_str_end; -size_t tok_str_len; - // make copy of attribute value - strings list. - tok_str_len = strlen(mReader->getAttributeValue(pAttrIdx)); - if(!tok_str_len) Throw_IncorrectAttrValue(mReader->getAttributeName(pAttrIdx)); + const size_t tok_str_len = strlen(mReader->getAttributeValue(pAttrIdx)); + if ( 0 == tok_str_len ) + { + Throw_IncorrectAttrValue( mReader->getAttributeName( pAttrIdx ) ); + } // get pointer to begin of value. - tok_str = const_cast(mReader->getAttributeValue(pAttrIdx)); - tok_str_end = tok_str + tok_str_len; + char *tok_str = const_cast(mReader->getAttributeValue(pAttrIdx)); + char *tok_str_end = tok_str + tok_str_len; // string list has following format: attr_name='"s1" "s2" "sn"'. do { @@ -729,25 +781,33 @@ aiVector3D X3DImporter::GeometryHelper_Make_Point2D(const float pAngle, const fl void X3DImporter::GeometryHelper_Make_Arc2D(const float pStartAngle, const float pEndAngle, const float pRadius, size_t pNumSegments, std::list& pVertices) { -float angle_full, angle_step; - // check argument values ranges. - if((pStartAngle < -AI_MATH_TWO_PI_F) || (pStartAngle > AI_MATH_TWO_PI_F)) Throw_ArgOutOfRange("GeometryHelper_Make_Arc2D.pStartAngle"); - if((pEndAngle < -AI_MATH_TWO_PI_F) || (pEndAngle > AI_MATH_TWO_PI_F)) Throw_ArgOutOfRange("GeometryHelper_Make_Arc2D.pEndAngle"); - if(pRadius <= 0) Throw_ArgOutOfRange("GeometryHelper_Make_Arc2D.pRadius"); + if ( ( pStartAngle < -AI_MATH_TWO_PI_F ) || ( pStartAngle > AI_MATH_TWO_PI_F ) ) + { + Throw_ArgOutOfRange( "GeometryHelper_Make_Arc2D.pStartAngle" ); + } + if ( ( pEndAngle < -AI_MATH_TWO_PI_F ) || ( pEndAngle > AI_MATH_TWO_PI_F ) ) + { + Throw_ArgOutOfRange( "GeometryHelper_Make_Arc2D.pEndAngle" ); + } + if ( pRadius <= 0 ) + { + Throw_ArgOutOfRange( "GeometryHelper_Make_Arc2D.pRadius" ); + } // calculate arc angle and check type of arc - angle_full = fabs(pEndAngle - pStartAngle); - if((angle_full > AI_MATH_TWO_PI_F) || (angle_full == 0.0f)) angle_full = AI_MATH_TWO_PI_F; + float angle_full = fabs(pEndAngle - pStartAngle); + if ( ( angle_full > AI_MATH_TWO_PI_F ) || ( angle_full == 0.0f ) ) + { + angle_full = AI_MATH_TWO_PI_F; + } // calculate angle for one step - angle to next point of line. - angle_step = angle_full / (float)pNumSegments; + float angle_step = angle_full / (float)pNumSegments; // make points for(size_t pi = 0; pi <= pNumSegments; pi++) { - float tangle; - - tangle = pStartAngle + pi * angle_step; + float tangle = pStartAngle + pi * angle_step; pVertices.push_back(GeometryHelper_Make_Point2D(tangle, pRadius)); }// for(size_t pi = 0; pi <= pNumSegments; pi++) @@ -757,12 +817,15 @@ float angle_full, angle_step; void X3DImporter::GeometryHelper_Extend_PointToLine(const std::list& pPoint, std::list& pLine) { -std::list::const_iterator pit = pPoint.begin(); -std::list::const_iterator pit_last = pPoint.end(); + std::list::const_iterator pit = pPoint.begin(); + std::list::const_iterator pit_last = pPoint.end(); pit_last--; - if(pPoint.size() < 2) Throw_ArgOutOfRange("GeometryHelper_Extend_PointToLine.pPoint.size() can not be less than 2."); + if ( pPoint.size() < 2 ) + { + Throw_ArgOutOfRange( "GeometryHelper_Extend_PointToLine.pPoint.size() can not be less than 2." ); + } // add first point of first line. pLine.push_back(*pit++); @@ -779,7 +842,7 @@ std::list::const_iterator pit_last = pPoint.end(); void X3DImporter::GeometryHelper_Extend_PolylineIdxToLineIdx(const std::list& pPolylineCoordIdx, std::list& pLineCoordIdx) { -std::list::const_iterator plit = pPolylineCoordIdx.begin(); + std::list::const_iterator plit = pPolylineCoordIdx.begin(); while(plit != pPolylineCoordIdx.end()) { @@ -831,16 +894,19 @@ void X3DImporter::GeometryHelper_MakeQL_RectParallelepiped(const aiVector3D& pSi void X3DImporter::GeometryHelper_CoordIdxStr2FacesArr(const std::list& pCoordIdx, std::vector& pFaces, unsigned int& pPrimitiveTypes) const { -std::list f_data(pCoordIdx); -std::vector inds; -unsigned int prim_type = 0; + std::list f_data(pCoordIdx); + std::vector inds; + unsigned int prim_type = 0; - if(f_data.back() != (-1)) f_data.push_back(-1); + if ( f_data.back() != ( -1 ) ) + { + f_data.push_back( -1 ); + } // reserve average size. pFaces.reserve(f_data.size() / 3); inds.reserve(4); -//PrintVectorSet("build. ci", pCoordIdx); + //PrintVectorSet("build. ci", pCoordIdx); for(std::list::iterator it = f_data.begin(); it != f_data.end(); it++) { // when face is got count how many indices in it. @@ -896,7 +962,7 @@ std::list tcol; void X3DImporter::MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const { -std::list::const_iterator col_it = pColors.begin(); + std::list::const_iterator col_it = pColors.begin(); if(pColorPerVertex) { @@ -933,10 +999,13 @@ std::list::const_iterator col_it = pColors.begin(); void X3DImporter::MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const { -std::list tcol; + std::list tcol; // create RGBA array from RGB. - for(std::list::const_iterator it = pColors.begin(); it != pColors.end(); it++) tcol.push_back(aiColor4D((*it).r, (*it).g, (*it).b, 1)); + for ( std::list::const_iterator it = pColors.begin(); it != pColors.end(); it++ ) + { + tcol.push_back( aiColor4D( ( *it ).r, ( *it ).g, ( *it ).b, 1 ) ); + } // call existing function for adding RGBA colors MeshGeometry_AddColor(pMesh, pCoordIdx, pColorIdx, tcol, pColorPerVertex); @@ -945,15 +1014,21 @@ std::list tcol; void X3DImporter::MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const { -std::vector col_tgt_arr; -std::list col_tgt_list; -std::vector col_arr_copy; + std::vector col_tgt_arr; + std::list col_tgt_list; + std::vector col_arr_copy; - if(pCoordIdx.size() == 0) throw DeadlyImportError("MeshGeometry_AddColor2. pCoordIdx can not be empty."); + if ( pCoordIdx.size() == 0 ) + { + throw DeadlyImportError( "MeshGeometry_AddColor2. pCoordIdx can not be empty." ); + } // copy list to array because we are need indexed access to colors. col_arr_copy.reserve(pColors.size()); - for(std::list::const_iterator it = pColors.begin(); it != pColors.end(); it++) col_arr_copy.push_back(*it); + for ( std::list::const_iterator it = pColors.begin(); it != pColors.end(); it++ ) + { + col_arr_copy.push_back( *it ); + } if(pColorPerVertex) { @@ -1036,12 +1111,15 @@ std::vector col_arr_copy; void X3DImporter::MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pNormalIdx, const std::list& pNormals, const bool pNormalPerVertex) const { -std::vector tind; -std::vector norm_arr_copy; + std::vector tind; + std::vector norm_arr_copy; // copy list to array because we are need indexed access to normals. norm_arr_copy.reserve(pNormals.size()); - for(std::list::const_iterator it = pNormals.begin(); it != pNormals.end(); it++) norm_arr_copy.push_back(*it); + for ( std::list::const_iterator it = pNormals.begin(); it != pNormals.end(); it++ ) + { + norm_arr_copy.push_back( *it ); + } if(pNormalPerVertex) { @@ -1109,7 +1187,7 @@ std::vector norm_arr_copy; void X3DImporter::MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pNormals, const bool pNormalPerVertex) const { -std::list::const_iterator norm_it = pNormals.begin(); + std::list::const_iterator norm_it = pNormals.begin(); if(pNormalPerVertex) { @@ -1138,9 +1216,9 @@ std::list::const_iterator norm_it = pNormals.begin(); void X3DImporter::MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pTexCoordIdx, const std::list& pTexCoords) const { -std::vector texcoord_arr_copy; -std::vector faces; -unsigned int prim_type; + std::vector texcoord_arr_copy; + std::vector faces; + unsigned int prim_type; // copy list to array because we are need indexed access to normals. texcoord_arr_copy.reserve(pTexCoords.size()); @@ -1152,8 +1230,14 @@ unsigned int prim_type; if(pTexCoordIdx.size() > 0) { GeometryHelper_CoordIdxStr2FacesArr(pTexCoordIdx, faces, prim_type); - if(!faces.size()) throw DeadlyImportError("Failed to add texture coordinates to mesh, faces list is empty."); - if(faces.size() != pMesh.mNumFaces) throw DeadlyImportError("Texture coordinates faces count must be equal to mesh faces count."); + if ( faces.empty() ) + { + throw DeadlyImportError( "Failed to add texture coordinates to mesh, faces list is empty." ); + } + if ( faces.size() != pMesh.mNumFaces ) + { + throw DeadlyImportError( "Texture coordinates faces count must be equal to mesh faces count." ); + } } else { @@ -1179,30 +1263,42 @@ unsigned int prim_type; void X3DImporter::MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pTexCoords) const { -std::vector tc_arr_copy; + std::vector tc_arr_copy; - if(pTexCoords.size() != pMesh.mNumVertices) throw DeadlyImportError("MeshGeometry_AddTexCoord. Texture coordinates and vertices count must be equal."); + if ( pTexCoords.size() != pMesh.mNumVertices ) + { + throw DeadlyImportError( "MeshGeometry_AddTexCoord. Texture coordinates and vertices count must be equal." ); + } // copy list to array because we are need convert aiVector2D to aiVector3D and also get indexed access as a bonus. tc_arr_copy.reserve(pTexCoords.size()); - for(std::list::const_iterator it = pTexCoords.begin(); it != pTexCoords.end(); it++) tc_arr_copy.push_back(aiVector3D((*it).x, (*it).y, 0)); + for ( std::list::const_iterator it = pTexCoords.begin(); it != pTexCoords.end(); it++ ) + { + tc_arr_copy.push_back( aiVector3D( ( *it ).x, ( *it ).y, 0 ) ); + } // copy texture coordinates to mesh pMesh.mTextureCoords[0] = new aiVector3D[pMesh.mNumVertices]; pMesh.mNumUVComponents[0] = 2; - for(size_t i = 0; i < pMesh.mNumVertices; i++) pMesh.mTextureCoords[0][i] = tc_arr_copy[i]; + for ( size_t i = 0; i < pMesh.mNumVertices; i++ ) + { + pMesh.mTextureCoords[ 0 ][ i ] = tc_arr_copy[ i ]; + } } aiMesh* X3DImporter::GeometryHelper_MakeMesh(const std::list& pCoordIdx, const std::list& pVertices) const { -aiMesh* tmesh; -std::vector faces; -unsigned int prim_type = 0; -size_t ts; + aiMesh* tmesh( nullptr ); + std::vector faces; + unsigned int prim_type = 0; + size_t ts; // create faces array from input string with vertices indices. GeometryHelper_CoordIdxStr2FacesArr(pCoordIdx, faces, prim_type); - if(!faces.size()) throw DeadlyImportError("Failed to create mesh, faces list is empty."); + if ( !faces.size() ) + { + throw DeadlyImportError( "Failed to create mesh, faces list is empty." ); + } // // Create new mesh and copy geometry data. @@ -1220,7 +1316,10 @@ size_t ts; ts = pVertices.size(); tmesh->mVertices = new aiVector3D[ts]; tmesh->mNumVertices = ts; - for(size_t i = 0; i < ts; i++) tmesh->mVertices[i] = *vit++; + for ( size_t i = 0; i < ts; i++ ) + { + tmesh->mVertices[ i ] = *vit++; + } // set primitives type and return result. tmesh->mPrimitiveTypes = prim_type; @@ -1234,10 +1333,13 @@ size_t ts; void X3DImporter::ParseHelper_Group_Begin(const bool pStatic) { -CX3DImporter_NodeElement_Group* new_group = new CX3DImporter_NodeElement_Group(NodeElement_Cur, pStatic);// create new node with current node as parent. + CX3DImporter_NodeElement_Group* new_group = new CX3DImporter_NodeElement_Group(NodeElement_Cur, pStatic);// create new node with current node as parent. // if we are adding not the root element then add new element to current element child list. - if(NodeElement_Cur != nullptr) NodeElement_Cur->Child.push_back(new_group); + if ( NodeElement_Cur != nullptr ) + { + NodeElement_Cur->Child.push_back( new_group ); + } NodeElement_List.push_back(new_group);// it's a new element - add it to list. NodeElement_Cur = new_group;// switch current element to new one. @@ -1252,20 +1354,27 @@ void X3DImporter::ParseHelper_Node_Enter(CX3DImporter_NodeElement* pNode) void X3DImporter::ParseHelper_Node_Exit() { // check if we can walk up. - if(NodeElement_Cur != nullptr) NodeElement_Cur = NodeElement_Cur->Parent; + if ( NodeElement_Cur != nullptr ) + { + NodeElement_Cur = NodeElement_Cur->Parent; + } } void X3DImporter::ParseHelper_FixTruncatedFloatString(const char* pInStr, std::string& pOutString) { -size_t instr_len; - pOutString.clear(); - instr_len = strlen(pInStr); - if(!instr_len) return; + const size_t instr_len = strlen(pInStr); + if ( 0 == instr_len ) + { + return; + } pOutString.reserve(instr_len * 3 / 2); // check and correct floats in format ".x". Must be "x.y". - if(pInStr[0] == '.') pOutString.push_back('0'); + if ( pInStr[ 0 ] == '.' ) + { + pOutString.push_back( '0' ); + } pOutString.push_back(pInStr[0]); for(size_t ci = 1; ci < instr_len; ci++) @@ -1284,15 +1393,21 @@ size_t instr_len; void X3DImporter::ParseFile(const std::string& pFile, IOSystem* pIOHandler) { -irr::io::IrrXMLReader* OldReader = mReader;// store current XMLreader. -std::unique_ptr file(pIOHandler->Open(pFile, "rb")); + irr::io::IrrXMLReader* OldReader = mReader;// store current XMLreader. + std::unique_ptr file(pIOHandler->Open(pFile, "rb")); // Check whether we can read from the file - if(file.get() == nullptr) throw DeadlyImportError("Failed to open X3D file " + pFile + "."); + if ( file.get() == nullptr ) + { + throw DeadlyImportError( "Failed to open X3D file " + pFile + "." ); + } // generate a XML reader for it std::unique_ptr mIOWrapper(new CIrrXML_IOStreamReader(file.get())); mReader = irr::io::createIrrXMLReader(mIOWrapper.get()); - if(!mReader) throw DeadlyImportError("Failed to create XML reader for file" + pFile + "."); + if ( !mReader ) + { + throw DeadlyImportError( "Failed to create XML reader for file" + pFile + "." ); + } // start reading ParseNode_Root(); @@ -1304,13 +1419,19 @@ std::unique_ptr file(pIOHandler->Open(pFile, "rb")); void X3DImporter::ParseNode_Root() { // search for root tag - if(!XML_SearchNode("X3D")) throw DeadlyImportError("Root node \"X3D\" not found."); + if ( !XML_SearchNode( "X3D" ) ) + { + throw DeadlyImportError( "Root node \"X3D\" not found." ); + } ParseHelper_Group_Begin();// create root node element. // parse other contents while(mReader->read()) { - if(mReader->getNodeType() != irr::io::EXN_ELEMENT) continue; + if ( mReader->getNodeType() != irr::io::EXN_ELEMENT ) + { + continue; + } if(XML_CheckNode_NameEqual("head")) ParseNode_Head(); @@ -1326,7 +1447,7 @@ void X3DImporter::ParseNode_Root() void X3DImporter::ParseNode_Head() { -bool close_found = false;// flag: true if close tag of node are found. + bool close_found = false;// flag: true if close tag of node are found. while(mReader->read()) { @@ -1367,10 +1488,10 @@ bool close_found = false;// flag: true if close tag of node are found. void X3DImporter::ParseNode_Scene() { -auto GroupCounter_Increase = [](size_t& pCounter, const char* pGroupName) -> void -{ - pCounter++; - if(pCounter == 0) throw DeadlyImportError("Group counter overflow. Too much groups with type: " + std::string(pGroupName) + "."); + auto GroupCounter_Increase = [](size_t& pCounter, const char* pGroupName) -> void + { + pCounter++; + if(pCounter == 0) throw DeadlyImportError("Group counter overflow. Too much groups with type: " + std::string(pGroupName) + "."); }; auto GroupCounter_Decrease = [&](size_t& pCounter, const char* pGroupName) -> void @@ -1495,7 +1616,7 @@ size_t counter_switch = 0; bool X3DImporter::CanRead(const std::string& pFile, IOSystem* pIOHandler, bool pCheckSig) const { -const std::string extension = GetExtension(pFile); + const std::string extension = GetExtension(pFile); if(extension == "x3d") return true; diff --git a/code/X3DImporter.hpp b/code/X3DImporter.hpp index 74585b9a1..f19fc0195 100644 --- a/code/X3DImporter.hpp +++ b/code/X3DImporter.hpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter.hpp /// \brief X3D-format files importer for Assimp. /// \date 2015-2016 @@ -10,10 +49,10 @@ #include "X3DImporter_Node.hpp" // Header files, Assimp. -#include "assimp/DefaultLogger.hpp" -#include "assimp/importerdesc.h" -#include "assimp/ProgressHandler.hpp" -#include "assimp/types.h" +#include +#include +#include +#include #include "BaseImporter.h" #include "irrXMLWrapper.h" @@ -151,47 +190,49 @@ namespace Assimp /// class X3DImporter : public BaseImporter { - /***********************************************/ - /******************** Types ********************/ - /***********************************************/ - - /***********************************************/ - /****************** Constants ******************/ - /***********************************************/ - -private: - - static const aiImporterDesc Description; - - /***********************************************/ - /****************** Variables ******************/ - /***********************************************/ - -private: - - CX3DImporter_NodeElement* NodeElement_Cur;///< Current element. - irr::io::IrrXMLReader* mReader;///< Pointer to XML-reader object - std::string mFileDir; - public: - std::list NodeElement_List;///< All elements of scene graph. - /***********************************************/ - /****************** Functions ******************/ - /***********************************************/ +public: + /***********************************************/ + /****************** Functions ******************/ + /***********************************************/ + + /// Default constructor. + X3DImporter() + : NodeElement_Cur( nullptr ), mReader( nullptr ) + {} + + /// Default destructor. + ~X3DImporter(); + + /***********************************************/ + /******** Functions: parse set, public *********/ + /***********************************************/ + + /// Parse X3D file and fill scene graph. The function has no return value. Result can be found by analyzing the generated graph. + /// Also exception can be throwed if trouble will found. + /// \param [in] pFile - name of file to be parsed. + /// \param [in] pIOHandler - pointer to IO helper object. + void ParseFile( const std::string& pFile, IOSystem* pIOHandler ); + + /***********************************************/ + /********* Functions: BaseImporter set *********/ + /***********************************************/ + + bool CanRead( const std::string& pFile, IOSystem* pIOHandler, bool pCheckSig ) const; + void GetExtensionList( std::set& pExtensionList ); + void InternReadFile( const std::string& pFile, aiScene* pScene, IOSystem* pIOHandler ); + const aiImporterDesc* GetInfo()const; + private: - - /// \fn X3DImporter(const X3DImporter& pScene) /// Disabled copy constructor. X3DImporter(const X3DImporter& pScene); - /// \fn X3DImporter& operator=(const X3DImporter& pScene) /// Disabled assign operator. X3DImporter& operator=(const X3DImporter& pScene); - /// \fn void Clear() /// Clear all temporary data. void Clear(); @@ -199,7 +240,6 @@ private: /************* Functions: find set *************/ /***********************************************/ - /// \fn bool FindNodeElement_FromRoot(const std::string& pID, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement) /// Find requested node element. Search will be made in all existing nodes. /// \param [in] pID - ID of requested element. /// \param [in] pType - type of requested element. @@ -207,7 +247,6 @@ private: /// \return true - if the element is found, else - false. bool FindNodeElement_FromRoot(const std::string& pID, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement); - /// \fn bool FindNodeElement_FromNode(CX3DImporter_NodeElement* pStartNode, const std::string& pID, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement) /// Find requested node element. Search will be made from pointed node down to childs. /// \param [in] pStartNode - pointer to start node. /// \param [in] pID - ID of requested element. @@ -217,7 +256,6 @@ private: bool FindNodeElement_FromNode(CX3DImporter_NodeElement* pStartNode, const std::string& pID, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement); - /// \fn bool FindNodeElement(const std::string& pName, const CX3DImporter_NodeElement::EType pType, CX3DImporter_NodeElement** pElement) /// Find requested node element. For "Node"'s accounting flag "Static". /// \param [in] pName - name of requested element. /// \param [in] pType - type of requested element. @@ -229,49 +267,41 @@ private: /********* Functions: postprocess set **********/ /***********************************************/ - /// \fn aiMatrix4x4 PostprocessHelper_Matrix_GlobalToCurrent() const /// \return transformation matrix from global coordinate system to local. aiMatrix4x4 PostprocessHelper_Matrix_GlobalToCurrent() const; - /// \fn void PostprocessHelper_CollectMetadata(const CX3DImporter_NodeElement& pNodeElement, std::list& pList) const /// Check if child elements of node element is metadata and add it to temporary list. /// \param [in] pNodeElement - node element where metadata is searching. /// \param [out] pList - temporary list for collected metadata. void PostprocessHelper_CollectMetadata(const CX3DImporter_NodeElement& pNodeElement, std::list& pList) const; - /// \fn bool bool PostprocessHelper_ElementIsMetadata(const CX3DImporter_NodeElement::EType pType) const /// Check if type of node element is metadata. E.g. , . /// \param [in] pType - checked type. /// \return true - if the type corresponds to the metadata. bool PostprocessHelper_ElementIsMetadata(const CX3DImporter_NodeElement::EType pType) const; - /// \fn bool PostprocessHelper_ElementIsMesh(const CX3DImporter_NodeElement::EType pType) const /// Check if type of node element is geometry object and can be used to build mesh. E.g. , . /// \param [in] pType - checked type. /// \return true - if the type corresponds to the mesh. bool PostprocessHelper_ElementIsMesh(const CX3DImporter_NodeElement::EType pType) const; - /// \fn void Postprocess_BuildLight(const CX3DImporter_NodeElement& pNodeElement, std::list& pSceneLightList) const /// Read CX3DImporter_NodeElement_Light, create aiLight and add it to list of the lights. /// \param [in] pNodeElement - reference to lisght element(, , ). /// \param [out] pSceneLightList - reference to list of the lights. void Postprocess_BuildLight(const CX3DImporter_NodeElement& pNodeElement, std::list& pSceneLightList) const; - /// \fn void Postprocess_BuildMaterial(const CX3DImporter_NodeElement& pNodeElement, aiMaterial** pMaterial) const /// Create filled structure with type \ref aiMaterial from \ref CX3DImporter_NodeElement. This function itseld extract /// all needed data from scene graph. /// \param [in] pNodeElement - reference to material element(). /// \param [out] pMaterial - pointer to pointer to created material. *pMaterial must be nullptr. void Postprocess_BuildMaterial(const CX3DImporter_NodeElement& pNodeElement, aiMaterial** pMaterial) const; - /// \fn void Postprocess_BuildMesh(const CX3DImporter_NodeElement& pNodeElement, aiMesh** pMesh) const /// Create filled structure with type \ref aiMaterial from \ref CX3DImporter_NodeElement. This function itseld extract /// all needed data from scene graph. /// \param [in] pNodeElement - reference to geometry object. /// \param [out] pMesh - pointer to pointer to created mesh. *pMesh must be nullptr. void Postprocess_BuildMesh(const CX3DImporter_NodeElement& pNodeElement, aiMesh** pMesh) const; - /// \fn void Postprocess_BuildNode(const CX3DImporter_NodeElement& pNodeElement, aiNode& pSceneNode, std::list& pSceneMeshList, std::list& pSceneMaterialList, std::list& pSceneLightList) const /// Create aiNode from CX3DImporter_NodeElement. Also function check children and make recursive call. /// \param [out] pNode - pointer to pointer to created node. *pNode must be nullptr. /// \param [in] pNodeElement - CX3DImporter_NodeElement which read. @@ -282,7 +312,6 @@ private: void Postprocess_BuildNode(const CX3DImporter_NodeElement& pNodeElement, aiNode& pSceneNode, std::list& pSceneMeshList, std::list& pSceneMaterialList, std::list& pSceneLightList) const; - /// \fn void Postprocess_BuildShape(const CX3DImporter_NodeElement_Shape& pShapeNodeElement, std::list& pNodeMeshInd, std::list& pSceneMeshList, std::list& pSceneMaterialList) const /// To create mesh and material kept in . /// \param pShapeNodeElement - reference to node element which kept data. /// \param pNodeMeshInd - reference to list with mesh indices. When pShapeNodeElement will read new mesh index will be added to this list. @@ -291,7 +320,6 @@ private: void Postprocess_BuildShape(const CX3DImporter_NodeElement_Shape& pShapeNodeElement, std::list& pNodeMeshInd, std::list& pSceneMeshList, std::list& pSceneMaterialList) const; - /// \fn void Postprocess_CollectMetadata(aiNode& pSceneNode, const CX3DImporter_NodeElement& pNodeElement) const /// Check if child elements of node element is metadata and add it to scene node. /// \param [in] pNodeElement - node element where metadata is searching. /// \param [out] pSceneNode - scene node in which metadata will be added. @@ -301,13 +329,11 @@ private: /************* Functions: throw set ************/ /***********************************************/ - /// \fn void Throw_ArgOutOfRange(const std::string& pArgument) /// Call that function when argument is out of range and exception must be raised. /// \throw DeadlyImportError. /// \param [in] pArgument - argument name. void Throw_ArgOutOfRange(const std::string& pArgument); - /// \fn void Throw_CloseNotFound(const std::string& pNode) /// Call that function when close tag of node not found and exception must be raised. /// E.g.: /// @@ -317,31 +343,26 @@ private: /// \param [in] pNode - node name in which exception happened. void Throw_CloseNotFound(const std::string& pNode); - /// \fn void Throw_ConvertFail_Str2ArrF(const std::string& pAttrValue) /// Call that function when string value can not be converted to floating point value and exception must be raised. /// \param [in] pAttrValue - attribute value. /// \throw DeadlyImportError. void Throw_ConvertFail_Str2ArrF(const std::string& pAttrValue); - /// \fn void Throw_DEF_And_USE() /// Call that function when in node defined attributes "DEF" and "USE" and exception must be raised. /// E.g.: /// \throw DeadlyImportError. void Throw_DEF_And_USE(); - /// \fn void Throw_IncorrectAttr(const std::string& pAttrName) /// Call that function when attribute name is incorrect and exception must be raised. /// \param [in] pAttrName - attribute name. /// \throw DeadlyImportError. void Throw_IncorrectAttr(const std::string& pAttrName); - /// \fn void Throw_IncorrectAttrValue(const std::string& pAttrName) /// Call that function when attribute value is incorrect and exception must be raised. /// \param [in] pAttrName - attribute name. /// \throw DeadlyImportError. void Throw_IncorrectAttrValue(const std::string& pAttrName); - /// \fn void Throw_MoreThanOnceDefined(const std::string& pNode, const std::string& pDescription) /// Call that function when some type of nodes are defined twice or more when must be used only once and exception must be raised. /// E.g.: /// @@ -353,7 +374,6 @@ private: /// \param [in] pDescription - message about error. E.g. what the node defined while exception raised. void Throw_MoreThanOnceDefined(const std::string& pNodeType, const std::string& pDescription); - /// \fn void Throw_TagCountIncorrect(const std::string& pNode) /// Call that function when count of opening and closing tags which create group(e.g. ) are not equal and exception must be raised. /// E.g.: /// @@ -365,7 +385,6 @@ private: /// \param [in] pNode - node name in which exception happened. void Throw_TagCountIncorrect(const std::string& pNode); - /// \fn void Throw_USE_NotFound(const std::string& pAttrValue) /// Call that function when defined in "USE" element are not found in graph and exception must be raised. /// \param [in] pAttrValue - "USE" attribute value. /// \throw DeadlyImportError. @@ -375,7 +394,6 @@ private: /************** Functions: LOG set *************/ /***********************************************/ - /// \fn void LogInfo(const std::string& pMessage) /// Short variant for calling \ref DefaultLogger::get()->info() void LogInfo(const std::string& pMessage) { DefaultLogger::get()->info(pMessage); } @@ -383,144 +401,117 @@ private: /************** Functions: XML set *************/ /***********************************************/ - /// \fn void XML_CheckNode_MustBeEmpty() /// Chek if current node is empty: . If not then exception will throwed. void XML_CheckNode_MustBeEmpty(); - /// \fn bool XML_CheckNode_NameEqual(const std::string& pNodeName) /// Chek if current node name is equal to pNodeName. /// \param [in] pNodeName - name for checking. /// return true if current node name is equal to pNodeName, else - false. bool XML_CheckNode_NameEqual(const std::string& pNodeName) { return mReader->getNodeName() == pNodeName; } - /// \fn void XML_CheckNode_SkipUnsupported(const std::string& pParentNodeName) /// Skip unsupported node and report about that. Depend on node name can be skipped begin tag of node all whole node. /// \param [in] pParentNodeName - parent node name. Used for reporting. void XML_CheckNode_SkipUnsupported(const std::string& pParentNodeName); - /// \fn bool XML_SearchNode(const std::string& pNodeName) /// Search for specified node in file. XML file read pointer(mReader) will point to found node or file end after search is end. /// \param [in] pNodeName - requested node name. /// return true - if node is found, else - false. bool XML_SearchNode(const std::string& pNodeName); - /// \fn bool XML_ReadNode_GetAttrVal_AsBool(const int pAttrIdx) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \return read data. bool XML_ReadNode_GetAttrVal_AsBool(const int pAttrIdx); - /// \fn float XML_ReadNode_GetAttrVal_AsFloat(const int pAttrIdx) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \return read data. float XML_ReadNode_GetAttrVal_AsFloat(const int pAttrIdx); - /// \fn int32_t XML_ReadNode_GetAttrVal_AsI32(const int pAttrIdx) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \return read data. int32_t XML_ReadNode_GetAttrVal_AsI32(const int pAttrIdx); - /// \fn void XML_ReadNode_GetAttrVal_AsCol3f(const int pAttrIdx, aiColor3D& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsCol3f(const int pAttrIdx, aiColor3D& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsVec2f(const int pAttrIdx, aiVector2D& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsVec2f(const int pAttrIdx, aiVector2D& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsVec3f(const int pAttrIdx, aiVector3D& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsVec3f(const int pAttrIdx, aiVector3D& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListB(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListB(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrB(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListBool(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrB(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListI32(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListI32(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrI32(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListI32(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrI32(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListF(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListF(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrF(const int pAttrIdx, std::vector& pValue) - /// \overload void XML_ReadNode_GetAttrVal_AsListF(const int pAttrIdx, std::list& pValue) + /// \overload void XML_ReadNode_GetAttrVal_AsListF(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrF(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListD(const int pAttrIdx, std::list& pValue) - /// Read attribute value. + /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListD(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrD(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListD(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrD(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListCol3f(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListCol3f(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrCol3f(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListCol3f(const int pAttrIdx, std::vector& pValue) void XML_ReadNode_GetAttrVal_AsArrCol3f(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListCol4f(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListCol4f(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrCol4f(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListCol4f(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrCol4f(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListVec2f(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListVec2f(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrVec2f(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListVec2f(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrVec2f(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListVec3f(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. void XML_ReadNode_GetAttrVal_AsListVec3f(const int pAttrIdx, std::list& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsArrVec3f(const int pAttrIdx, std::vector& pValue) /// \overload void XML_ReadNode_GetAttrVal_AsListVec3f(const int pAttrIdx, std::list& pValue) void XML_ReadNode_GetAttrVal_AsArrVec3f(const int pAttrIdx, std::vector& pValue); - /// \fn void XML_ReadNode_GetAttrVal_AsListS(const int pAttrIdx, std::list& pValue) /// Read attribute value. /// \param [in] pAttrIdx - attribute index (\ref mReader->getAttribute* set). /// \param [out] pValue - read data. @@ -530,14 +521,12 @@ private: /******* Functions: geometry helper set *******/ /***********************************************/ - /// \fn aiVector3D GeometryHelper_Make_Point2D(const float pAngle, const float pRadius) /// Make point on surface oXY. /// \param [in] pAngle - angle in radians between radius-vector of point and oX axis. Angle extends from the oX axis counterclockwise to the radius-vector. /// \param [in] pRadius - length of radius-vector. /// \return made point coordinates. aiVector3D GeometryHelper_Make_Point2D(const float pAngle, const float pRadius); - /// \fn void GeometryHelper_Make_Arc2D(const float pStartAngle, const float pEndAngle, const float pRadius, size_t pNumSegments, std::list& pVertices) /// Make 2D figure - linear circular arc with center in (0, 0). The z-coordinate is 0. The arc extends from the pStartAngle counterclockwise /// to the pEndAngle. If pStartAngle and pEndAngle have the same value, a circle is specified. If the absolute difference between pStartAngle /// and pEndAngle is greater than or equal to 2pi, a circle is specified. @@ -548,32 +537,27 @@ private: /// \param [out] pVertices - generated vertices. void GeometryHelper_Make_Arc2D(const float pStartAngle, const float pEndAngle, const float pRadius, size_t pNumSegments, std::list& pVertices); - /// \fn void GeometryHelper_Extend_PointToLine(const std::list& pPoint, std::list& pLine) /// Create line set from point set. /// \param [in] pPoint - input points list. /// \param [out] pLine - made lines list. void GeometryHelper_Extend_PointToLine(const std::list& pPoint, std::list& pLine); - /// \fn GeometryHelper_Extend_PolylineIdxToLineIdx(const std::list& pPolylineCoordIdx, std::list& pLineCoordIdx) /// Create CoordIdx of line set from CoordIdx of polyline set. /// \param [in] pPolylineCoordIdx - vertices indices divided by delimiter "-1". Must contain faces with two or more indices. /// \param [out] pLineCoordIdx - made CoordIdx of line set. void GeometryHelper_Extend_PolylineIdxToLineIdx(const std::list& pPolylineCoordIdx, std::list& pLineCoordIdx); - /// \fn void GeometryHelper_MakeQL_RectParallelepiped(const aiVector3D& pSize, std::list& pVertices) /// Make 3D body - rectangular parallelepiped with center in (0, 0). QL mean quadlist (\sa pVertices). /// \param [in] pSize - scale factor for body for every axis. E.g. (1, 2, 1) mean: X-size and Z-size - 1, Y-size - 2. /// \param [out] pVertices - generated vertices. The list of vertices is grouped in quads. void GeometryHelper_MakeQL_RectParallelepiped(const aiVector3D& pSize, std::list& pVertices); - /// \fn void GeometryHelper_CoordIdxStr2FacesArr(const std::list& pCoordIdx, std::vector& pFaces, unsigned int& pPrimitiveTypes) const /// Create faces array from vertices indices array. /// \param [in] pCoordIdx - vertices indices divided by delimiter "-1". /// \param [in] pFaces - created faces array. /// \param [in] pPrimitiveTypes - type of primitives in faces. void GeometryHelper_CoordIdxStr2FacesArr(const std::list& pCoordIdx, std::vector& pFaces, unsigned int& pPrimitiveTypes) const; - /// \fn void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColors, const bool pColorPerVertex) const /// Add colors to mesh. /// a. If colorPerVertex is FALSE, colours are applied to each face, as follows: /// If the colorIndex field is not empty, one colour is used for each face of the mesh. There shall be at least as many indices in the @@ -594,41 +578,33 @@ private: void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const; - /// \fn void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const; /// \overload void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const; void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pColorIdx, const std::list& pColors, const bool pColorPerVertex) const; - /// \fn void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const /// Add colors to mesh. /// \param [in] pMesh - mesh for adding data. /// \param [in] pColors - defined colors. /// \param [in] pColorPerVertex - if \ref pColorPerVertex is true then color in \ref pColors defined for every vertex, if false - for every face. void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const; - /// \fn void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const /// \overload void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const void MeshGeometry_AddColor(aiMesh& pMesh, const std::list& pColors, const bool pColorPerVertex) const; - /// \fn void MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pNormalIdx, const std::list& pNormals, const bool pNormalPerVertex) const /// Add normals to mesh. Function work similar to \ref MeshGeometry_AddColor; void MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pNormalIdx, const std::list& pNormals, const bool pNormalPerVertex) const; - /// \fn void MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pNormals, const bool pNormalPerVertex) const /// Add normals to mesh. Function work similar to \ref MeshGeometry_AddColor; void MeshGeometry_AddNormal(aiMesh& pMesh, const std::list& pNormals, const bool pNormalPerVertex) const; - /// \fn void MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pTexCoordIdx, const std::list& pTexCoords) const - /// Add texture coordinates to mesh. Function work similar to \ref MeshGeometry_AddColor; + /// Add texture coordinates to mesh. Function work similar to \ref MeshGeometry_AddColor; void MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pCoordIdx, const std::list& pTexCoordIdx, const std::list& pTexCoords) const; - /// \fn void MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pTexCoords) const - /// Add texture coordinates to mesh. Function work similar to \ref MeshGeometry_AddColor; + /// Add texture coordinates to mesh. Function work similar to \ref MeshGeometry_AddColor; void MeshGeometry_AddTexCoord(aiMesh& pMesh, const std::list& pTexCoords) const; - /// \fn aiMesh* GeometryHelper_MakeMesh(const std::list& pCoordIdx, const std::list& pVertices) const /// Create mesh. /// \param [in] pCoordIdx - vertices indices divided by delimiter "-1". /// \param [in] pVertices - vertices of mesh. @@ -639,36 +615,30 @@ private: /******** Functions: parse set private *********/ /***********************************************/ - /// \fn void ParseHelper_Group_Begin() /// Create node element with type "Node" in scene graph. That operation is needed when you enter to X3D group node /// like , etc. When exiting from X3D group node(e.g. ) \ref ParseHelper_Node_Exit must /// be called. /// \param [in] pStatic - flag: if true then static node is created(e.g. ). void ParseHelper_Group_Begin(const bool pStatic = false); - /// \fn void ParseHelper_Node_Enter(CX3DImporter_NodeElement* pNode) /// Make pNode as current and enter deeper for parsing child nodes. At end \ref ParseHelper_Node_Exit must be called. /// \param [in] pNode - new current node. void ParseHelper_Node_Enter(CX3DImporter_NodeElement* pNode); - /// \fn void ParseHelper_Group_End() /// This function must be called when exiting from X3D group node(e.g. ). \ref ParseHelper_Group_Begin. void ParseHelper_Node_Exit(); - /// \fn void ParseHelper_FixTruncatedFloatString(const char* pInStr, std::string& pOutString) /// Attribute values of floating point types can take form ".x"(without leading zero). irrXMLReader can not read this form of values and it /// must be converted to right form - "0.xxx". /// \param [in] pInStr - pointer to input string which can contain incorrect form of values. /// \param [out[ pOutString - output string with right form of values. void ParseHelper_FixTruncatedFloatString(const char* pInStr, std::string& pOutString); - /// \fn bool ParseHelper_CheckRead_X3DMetadataObject() /// Check if current node has nodes of type X3DMetadataObject. Why we must do it? Because X3DMetadataObject can be in any non-empty X3DNode. /// Meaning that X3DMetadataObject can be in any non-empty node in . /// \return true - if metadata node are found and parsed, false - metadata not found. bool ParseHelper_CheckRead_X3DMetadataObject(); - /// \fn bool ParseHelper_CheckRead_X3DMetadataObject() /// Check if current node has nodes of type X3DGeometricPropertyNode. X3DGeometricPropertyNode /// X3DGeometricPropertyNode inheritors: /// , , , , , , , , @@ -677,42 +647,33 @@ private: /// \return true - if nodes are found and parsed, false - nodes not found. bool ParseHelper_CheckRead_X3DGeometricPropertyNode(); - /// \fn void ParseNode_Root() /// Parse node of the file. void ParseNode_Root(); - /// \fn void ParseNode_Head() /// Parse node of the file. void ParseNode_Head(); - /// \fn void ParseNode_Root() /// Parse node of the file. void ParseNode_Scene(); - /// \fn void ParseNode_Metadata(CX3DImporter_NodeElement* pParent, const std::string& pNodeName) /// Parse child nodes of node. /// \param [in] pNodeName - parsed node name. Must be set because that function is general and name needed for checking the end /// and error reporing. /// \param [in] pParentElement - parent metadata element. void ParseNode_Metadata(CX3DImporter_NodeElement* pParentElement, const std::string& pNodeName); - /// \fn void ParseNode_MetadataBoolean() /// Parse node of the file. void ParseNode_MetadataBoolean(); - /// \fn void ParseNode_MetadataDouble() /// Parse node of the file. void ParseNode_MetadataDouble(); - /// \fn void ParseNode_MetadataFloat() /// Parse node of the file. void ParseNode_MetadataFloat(); - /// \fn void ParseNode_MetadataInteger() /// Parse node of the file. void ParseNode_MetadataInteger(); - /// \fn void ParseNode_MetadataSet() /// Parse node of the file. void ParseNode_MetadataSet(); @@ -720,222 +681,160 @@ private: /// Parse node of the file. void ParseNode_MetadataString(); - /// \fn void ParseNode_Geometry2D_Arc2D() /// Parse node of the file. void ParseNode_Geometry2D_Arc2D(); - /// \fn void ParseNode_Geometry2D_ArcClose2D() /// Parse node of the file. void ParseNode_Geometry2D_ArcClose2D(); - /// \fn void ParseNode_Geometry2D_Circle2D() /// Parse node of the file. void ParseNode_Geometry2D_Circle2D(); - /// \fn void ParseNode_Geometry2D_Disk2D() /// Parse node of the file. void ParseNode_Geometry2D_Disk2D(); - /// \fn void ParseNode_Geometry2D_Polyline2D() /// Parse node of the file. void ParseNode_Geometry2D_Polyline2D(); - /// \fn void ParseNode_Geometry2D_Polypoint2D() /// Parse node of the file. void ParseNode_Geometry2D_Polypoint2D(); - /// \fn void ParseNode_Geometry2D_Rectangle2D() /// Parse node of the file. void ParseNode_Geometry2D_Rectangle2D(); - /// \fn void ParseNode_Geometry2D_TriangleSet2D() /// Parse node of the file. void ParseNode_Geometry2D_TriangleSet2D(); - /// \fn void ParseNode_Geometry3D_Box() /// Parse node of the file. void ParseNode_Geometry3D_Box(); - /// \fn void ParseNode_Geometry3D_Cone() /// Parse node of the file. void ParseNode_Geometry3D_Cone(); - /// \fn void ParseNode_Geometry3D_Cylinder() /// Parse node of the file. void ParseNode_Geometry3D_Cylinder(); - /// \fn void ParseNode_Geometry3D_ElevationGrid() /// Parse node of the file. void ParseNode_Geometry3D_ElevationGrid(); - /// \fn void ParseNode_Geometry3D_Extrusion() /// Parse node of the file. void ParseNode_Geometry3D_Extrusion(); - /// \fn void ParseNode_Geometry3D_IndexedFaceSet() /// Parse node of the file. void ParseNode_Geometry3D_IndexedFaceSet(); - /// \fn void ParseNode_Geometry3D_Sphere() /// Parse node of the file. void ParseNode_Geometry3D_Sphere(); - /// \fn void ParseNode_Grouping_Group() /// Parse node of the file. And create new node in scene graph. void ParseNode_Grouping_Group(); - /// \fn void ParseNode_Grouping_GroupEnd() /// Doing actions at an exit from . Walk up in scene graph. void ParseNode_Grouping_GroupEnd(); - /// \fn void ParseNode_Grouping_StaticGroup() /// Parse node of the file. And create new node in scene graph. void ParseNode_Grouping_StaticGroup(); - /// \fn void ParseNode_Grouping_StaticGroupEnd() /// Doing actions at an exit from . Walk up in scene graph. void ParseNode_Grouping_StaticGroupEnd(); - /// \fn void ParseNode_Grouping_Switch() /// Parse node of the file. And create new node in scene graph. void ParseNode_Grouping_Switch(); - /// \fn void ParseNode_Grouping_SwitchEnd() /// Doing actions at an exit from . Walk up in scene graph. void ParseNode_Grouping_SwitchEnd(); - /// \fn void ParseNode_Grouping_Transform() /// Parse node of the file. And create new node in scene graph. void ParseNode_Grouping_Transform(); - /// \fn void ParseNode_Grouping_TransformEnd() /// Doing actions at an exit from . Walk up in scene graph. void ParseNode_Grouping_TransformEnd(); - /// \fn void ParseNode_Rendering_Color() /// Parse node of the file. void ParseNode_Rendering_Color(); - /// \fn void ParseNode_Rendering_ColorRGBA() /// Parse node of the file. void ParseNode_Rendering_ColorRGBA(); - /// \fn void ParseNode_Rendering_Coordinate() /// Parse node of the file. void ParseNode_Rendering_Coordinate(); - /// \fn void ParseNode_Rendering_Normal() /// Parse node of the file. void ParseNode_Rendering_Normal(); - /// \fn void ParseNode_Rendering_IndexedLineSet() /// Parse node of the file. void ParseNode_Rendering_IndexedLineSet(); - /// \fn void ParseNode_Rendering_IndexedTriangleFanSet() /// Parse node of the file. void ParseNode_Rendering_IndexedTriangleFanSet(); - /// \fn void ParseNode_Rendering_IndexedTriangleSet() /// Parse node of the file. void ParseNode_Rendering_IndexedTriangleSet(); - /// \fn void ParseNode_Rendering_IndexedTriangleStripSet() /// Parse node of the file. void ParseNode_Rendering_IndexedTriangleStripSet(); - /// \fn void ParseNode_Rendering_LineSet() /// Parse node of the file. void ParseNode_Rendering_LineSet(); - /// \fn void ParseNode_Rendering_PointSet() /// Parse node of the file. void ParseNode_Rendering_PointSet(); - /// \fn void ParseNode_Rendering_TriangleFanSet() /// Parse node of the file. void ParseNode_Rendering_TriangleFanSet(); - /// \fn void ParseNode_Rendering_TriangleSet() /// Parse node of the file. void ParseNode_Rendering_TriangleSet(); - /// \fn void ParseNode_Rendering_TriangleStripSet() /// Parse node of the file. void ParseNode_Rendering_TriangleStripSet(); - /// \fn void ParseNode_Texturing_ImageTexture() /// Parse node of the file. void ParseNode_Texturing_ImageTexture(); - /// \fn void ParseNode_Texturing_TextureCoordinate() /// Parse node of the file. void ParseNode_Texturing_TextureCoordinate(); - /// \fn void ParseNode_Texturing_TextureTransform() /// Parse node of the file. void ParseNode_Texturing_TextureTransform(); - /// \fn void ParseNode_Shape_Shape() /// Parse node of the file. void ParseNode_Shape_Shape(); - /// \fn void ParseNode_Shape_Appearance() /// Parse node of the file. void ParseNode_Shape_Appearance(); - /// \fn void ParseNode_Shape_Material() /// Parse node of the file. void ParseNode_Shape_Material(); - /// \fn void ParseNode_Networking_Inline() /// Parse node of the file. void ParseNode_Networking_Inline(); - /// \fn void ParseNode_Lighting_DirectionalLight() /// Parse node of the file. void ParseNode_Lighting_DirectionalLight(); - /// \fn void ParseNode_Lighting_PointLight() /// Parse node of the file. void ParseNode_Lighting_PointLight(); - /// \fn void ParseNode_Lighting_SpotLight() /// Parse node of the file. void ParseNode_Lighting_SpotLight(); -public: +private: + /***********************************************/ + /******************** Types ********************/ + /***********************************************/ - /// \fn X3DImporter() - /// Default constructor. - X3DImporter() - : NodeElement_Cur(nullptr), mReader(nullptr) - {} - - /// \fn ~X3DImporter() - /// Default destructor. - ~X3DImporter(); - - /***********************************************/ - /******** Functions: parse set, public *********/ - /***********************************************/ - - /// \fn void ParseFile(const std::string& pFile, IOSystem* pIOHandler) - /// Parse X3D file and fill scene graph. The function has no return value. Result can be found by analyzing the generated graph. - /// Also exception can be throwed if trouble will found. - /// \param [in] pFile - name of file to be parsed. - /// \param [in] pIOHandler - pointer to IO helper object. - void ParseFile(const std::string& pFile, IOSystem* pIOHandler); - - /***********************************************/ - /********* Functions: BaseImporter set *********/ - /***********************************************/ - - bool CanRead(const std::string& pFile, IOSystem* pIOHandler, bool pCheckSig) const; - void GetExtensionList(std::set& pExtensionList); - void InternReadFile(const std::string& pFile, aiScene* pScene, IOSystem* pIOHandler); - const aiImporterDesc* GetInfo ()const; + /***********************************************/ + /****************** Constants ******************/ + /***********************************************/ + static const aiImporterDesc Description; + /***********************************************/ + /****************** Variables ******************/ + /***********************************************/ + CX3DImporter_NodeElement* NodeElement_Cur;///< Current element. + irr::io::IrrXMLReader* mReader;///< Pointer to XML-reader object + std::string mFileDir; };// class X3DImporter }// namespace Assimp diff --git a/code/X3DImporter_Geometry2D.cpp b/code/X3DImporter_Geometry2D.cpp index 8e62cca20..453313297 100644 --- a/code/X3DImporter_Geometry2D.cpp +++ b/code/X3DImporter_Geometry2D.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Geometry2D.cpp /// \brief Parsing data from nodes of "Geometry2D" set of X3D. /// \date 2015-2016 @@ -25,11 +64,11 @@ namespace Assimp // angle base unit has been specified). If startAngle and endAngle have the same value, a circle is specified. void X3DImporter::ParseNode_Geometry2D_Arc2D() { -std::string def, use; -float endAngle = AI_MATH_HALF_PI_F; -float radius = 1; -float startAngle = 0; -CX3DImporter_NodeElement* ne; + std::string def, use; + float endAngle = AI_MATH_HALF_PI_F; + float radius = 1; + float startAngle = 0; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -86,13 +125,13 @@ CX3DImporter_NodeElement* ne; // viewed from the +Z-axis, the texture is mapped onto each face with the same orientation as if the image were displayed normally in 2D. void X3DImporter::ParseNode_Geometry2D_ArcClose2D() { -std::string def, use; -std::string closureType("PIE"); -float endAngle = AI_MATH_HALF_PI_F; -float radius = 1; -bool solid = false; -float startAngle = 0; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string closureType("PIE"); + float endAngle = AI_MATH_HALF_PI_F; + float radius = 1; + bool solid = false; + float startAngle = 0; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -148,9 +187,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry2D_Circle2D() { -std::string def, use; -float radius = 1; -CX3DImporter_NodeElement* ne; + std::string def, use; + float radius = 1; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -199,11 +238,11 @@ CX3DImporter_NodeElement* ne; // the Disk2D, when viewed from the +Z-axis, the texture is mapped onto each face with the same orientation as if the image were displayed normally in 2D. void X3DImporter::ParseNode_Geometry2D_Disk2D() { -std::string def, use; -float innerRadius = 0; -float outerRadius = 1; -bool solid = false; -CX3DImporter_NodeElement* ne; + std::string def, use; + float innerRadius = 0; + float outerRadius = 1; + bool solid = false; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -289,9 +328,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry2D_Polyline2D() { -std::string def, use; -std::list lineSegments; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::list lineSegments; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -337,9 +376,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry2D_Polypoint2D() { -std::string def, use; -std::list point; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::list point; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -382,10 +421,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry2D_Rectangle2D() { -std::string def, use; -aiVector2D size(2, 2); -bool solid = false; -CX3DImporter_NodeElement* ne; + std::string def, use; + aiVector2D size(2, 2); + bool solid = false; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -434,10 +473,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry2D_TriangleSet2D() { -std::string def, use; -bool solid = false; -std::list vertices; -CX3DImporter_NodeElement* ne; + std::string def, use; + bool solid = false; + std::list vertices; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Geometry3D.cpp b/code/X3DImporter_Geometry3D.cpp index c71e08bad..252593163 100644 --- a/code/X3DImporter_Geometry3D.cpp +++ b/code/X3DImporter_Geometry3D.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Geometry3D.cpp /// \brief Parsing data from nodes of "Geometry3D" set of X3D. /// \date 2015-2016 @@ -25,10 +64,10 @@ namespace Assimp // respectively and each component value shall be greater than zero. void X3DImporter::ParseNode_Geometry3D_Box() { -std::string def, use; -bool solid = true; -aiVector3D size(2, 2, 2); -CX3DImporter_NodeElement* ne; + std::string def, use; + bool solid = true; + aiVector3D size(2, 2, 2); + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -71,13 +110,13 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry3D_Cone() { -std::string use, def; -bool bottom = true; -float bottomRadius = 1; -float height = 2; -bool side = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool bottom = true; + float bottomRadius = 1; + float height = 2; + bool side = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -142,14 +181,14 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry3D_Cylinder() { -std::string use, def; -bool bottom = true; -float height = 2; -float radius = 1; -bool side = true; -bool solid = true; -bool top = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool bottom = true; + float height = 2; + float radius = 1; + bool side = true; + bool solid = true; + bool top = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -241,18 +280,18 @@ CX3DImporter_NodeElement* ne; // If either the xDimension or the zDimension is less than two, the ElevationGrid contains no quadrilaterals. void X3DImporter::ParseNode_Geometry3D_ElevationGrid() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -float creaseAngle = 0; -std::list height; -bool normalPerVertex = true; -bool solid = true; -int32_t xDimension = 0; -float xSpacing = 1; -int32_t zDimension = 0; -float zSpacing = 1; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + float creaseAngle = 0; + std::list height; + bool normalPerVertex = true; + bool solid = true; + int32_t xDimension = 0; + float xSpacing = 1; + int32_t zDimension = 0; + float zSpacing = 1; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -379,7 +418,7 @@ CX3DImporter_NodeElement* ne; template static void GeometryHelper_Extrusion_CurveIsClosed(std::vector& pCurve, const bool pDropTail, const bool pRemoveLastPoint, bool& pCurveIsClosed) { -size_t cur_sz = pCurve.size(); + size_t cur_sz = pCurve.size(); pCurveIsClosed = false; // for curve with less than four points checking is have no sense, @@ -422,9 +461,8 @@ size_t cur_sz = pCurve.size(); static aiVector3D GeometryHelper_Extrusion_GetNextY(const size_t pSpine_PointIdx, const std::vector& pSpine, const bool pSpine_Closed) { -const size_t spine_idx_last = pSpine.size() - 1; - -aiVector3D tvec; + const size_t spine_idx_last = pSpine.size() - 1; + aiVector3D tvec; if((pSpine_PointIdx == 0) || (pSpine_PointIdx == spine_idx_last))// at first special cases { @@ -456,10 +494,10 @@ aiVector3D tvec; static aiVector3D GeometryHelper_Extrusion_GetNextZ(const size_t pSpine_PointIdx, const std::vector& pSpine, const bool pSpine_Closed, const aiVector3D pVecZ_Prev) { -const aiVector3D zero_vec(0); -const size_t spine_idx_last = pSpine.size() - 1; + const aiVector3D zero_vec(0); + const size_t spine_idx_last = pSpine.size() - 1; -aiVector3D tvec; + aiVector3D tvec; // at first special cases if(pSpine.size() < 3)// spine have not enough points for vector calculations. @@ -533,18 +571,18 @@ aiVector3D tvec; // /> void X3DImporter::ParseNode_Geometry3D_Extrusion() { -std::string use, def; -bool beginCap = true; -bool ccw = true; -bool convex = true; -float creaseAngle = 0; -std::vector crossSection; -bool endCap = true; -std::vector orientation; -std::vector scale; -bool solid = true; -std::vector spine; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool beginCap = true; + bool ccw = true; + bool convex = true; + float creaseAngle = 0; + std::vector crossSection; + bool endCap = true; + std::vector orientation; + std::vector scale; + bool solid = true; + std::vector spine; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -816,18 +854,18 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Geometry3D_IndexedFaceSet() { -std::string use, def; -bool ccw = true; -std::list colorIndex; -bool colorPerVertex = true; -bool convex = true; -std::list coordIndex; -float creaseAngle = 0; -std::list normalIndex; -bool normalPerVertex = true; -bool solid = true; -std::list texCoordIndex; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + std::list colorIndex; + bool colorPerVertex = true; + bool convex = true; + std::list coordIndex; + float creaseAngle = 0; + std::list normalIndex; + bool normalPerVertex = true; + bool solid = true; + std::list texCoordIndex; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -903,10 +941,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Geometry3D_Sphere() { -std::string use, def; -float radius = 1; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + float radius = 1; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Group.cpp b/code/X3DImporter_Group.cpp index 9b9cfb7dc..e476ba58b 100644 --- a/code/X3DImporter_Group.cpp +++ b/code/X3DImporter_Group.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Group.cpp /// \brief Parsing data from nodes of "Grouping" set of X3D. /// \date 2015-2016 @@ -26,7 +65,7 @@ namespace Assimp // A Group node contains children nodes without introducing a new transformation. It is equivalent to a Transform node containing an identity transform. void X3DImporter::ParseNode_Grouping_Group() { -std::string def, use; + std::string def, use; MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -72,7 +111,7 @@ void X3DImporter::ParseNode_Grouping_GroupEnd() // contain any USE references outside the StaticGroup. void X3DImporter::ParseNode_Grouping_StaticGroup() { -std::string def, use; + std::string def, use; MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -120,8 +159,8 @@ void X3DImporter::ParseNode_Grouping_StaticGroupEnd() // is chosen. void X3DImporter::ParseNode_Grouping_Switch() { -std::string def, use; -int32_t whichChoice = -1; + std::string def, use; + int32_t whichChoice = -1; MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -181,13 +220,13 @@ void X3DImporter::ParseNode_Grouping_SwitchEnd() // P' = T * C * R * SR * S * -SR * -C * P void X3DImporter::ParseNode_Grouping_Transform() { -aiVector3D center(0, 0, 0); -float rotation[4] = {0, 0, 1, 0}; -aiVector3D scale(1, 1, 1);// A value of zero indicates that any child geometry shall not be displayed -float scale_orientation[4] = {0, 0, 1, 0}; -aiVector3D translation(0, 0, 0); -aiMatrix4x4 matr, tmatr; -std::string use, def; + aiVector3D center(0, 0, 0); + float rotation[4] = {0, 0, 1, 0}; + aiVector3D scale(1, 1, 1);// A value of zero indicates that any child geometry shall not be displayed + float scale_orientation[4] = {0, 0, 1, 0}; + aiVector3D translation(0, 0, 0); + aiMatrix4x4 matr, tmatr; + std::string use, def; MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -209,11 +248,13 @@ std::string use, def; if(an == "scaleOrientation") { std::vector tvec; - XML_ReadNode_GetAttrVal_AsArrF(idx, tvec); - if(tvec.size() != 4) throw DeadlyImportError(": scaleOrientation vector must have 4 elements."); + if ( tvec.size() != 4 ) + { + throw DeadlyImportError( ": scaleOrientation vector must have 4 elements." ); + } - memcpy(scale_orientation, tvec.data(), sizeof(scale_orientation)); + ::memcpy(scale_orientation, tvec.data(), sizeof(scale_orientation) ); continue; } @@ -223,7 +264,7 @@ std::string use, def; // if "USE" defined then find already defined element. if(!use.empty()) { - CX3DImporter_NodeElement* ne; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_USE_CHECKANDAPPLY(def, use, ENET_Group, ne); } @@ -231,12 +272,15 @@ std::string use, def; { ParseHelper_Group_Begin();// create new grouping element and go deeper if node has children. // at this place new group mode created and made current, so we can name it. - if(!def.empty()) NodeElement_Cur->ID = def; + if ( !def.empty() ) + { + NodeElement_Cur->ID = def; + } // // also set values specific to this type of group // - // calculate tranformation matrix + // calculate transformation matrix aiMatrix4x4::Translation(translation, matr);// T aiMatrix4x4::Translation(center, tmatr);// C matr *= tmatr; @@ -255,7 +299,10 @@ std::string use, def; // in grouping set of nodes check X3DMetadataObject is not needed, because it is done in parser function. // for empty element exit from node in that place - if(mReader->isEmptyElement()) ParseHelper_Node_Exit(); + if ( mReader->isEmptyElement() ) + { + ParseHelper_Node_Exit(); + } }// if(!use.empty()) else } diff --git a/code/X3DImporter_Light.cpp b/code/X3DImporter_Light.cpp index b6f1ecaa5..1816696d1 100644 --- a/code/X3DImporter_Light.cpp +++ b/code/X3DImporter_Light.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Light.cpp /// \brief Parsing data from nodes of "Lighting" set of X3D. /// \date 2015-2016 @@ -23,14 +62,14 @@ namespace Assimp // /> void X3DImporter::ParseNode_Lighting_DirectionalLight() { -std::string def, use; -float ambientIntensity = 0; -aiColor3D color(1, 1, 1); -aiVector3D direction(0, 0, -1); -bool global = false; -float intensity = 1; -bool on = true; -CX3DImporter_NodeElement* ne; + std::string def, use; + float ambientIntensity = 0; + aiColor3D color(1, 1, 1); + aiVector3D direction(0, 0, -1); + bool global = false; + float intensity = 1; + bool on = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -93,16 +132,16 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Lighting_PointLight() { -std::string def, use; -float ambientIntensity = 0; -aiVector3D attenuation(1, 0, 0); -aiColor3D color(1, 1, 1); -bool global = true; -float intensity = 1; -aiVector3D location(0, 0, 0); -bool on = true; -float radius = 100; -CX3DImporter_NodeElement* ne; + std::string def, use; + float ambientIntensity = 0; + aiVector3D attenuation( 1, 0, 0 ); + aiColor3D color( 1, 1, 1 ); + bool global = true; + float intensity = 1; + aiVector3D location( 0, 0, 0 ); + bool on = true; + float radius = 100; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -171,19 +210,19 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Lighting_SpotLight() { -std::string def, use; -float ambientIntensity = 0; -aiVector3D attenuation(1, 0, 0); -float beamWidth = 0.7854f; -aiColor3D color(1, 1, 1); -float cutOffAngle = 1.570796f; -aiVector3D direction(0, 0, -1); -bool global = true; -float intensity = 1; -aiVector3D location(0, 0, 0); -bool on = true; -float radius = 100; -CX3DImporter_NodeElement* ne; + std::string def, use; + float ambientIntensity = 0; + aiVector3D attenuation( 1, 0, 0 ); + float beamWidth = 0.7854f; + aiColor3D color( 1, 1, 1 ); + float cutOffAngle = 1.570796f; + aiVector3D direction( 0, 0, -1 ); + bool global = true; + float intensity = 1; + aiVector3D location( 0, 0, 0 ); + bool on = true; + float radius = 100; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Macro.hpp b/code/X3DImporter_Macro.hpp index 2107443ef..445edfe91 100644 --- a/code/X3DImporter_Macro.hpp +++ b/code/X3DImporter_Macro.hpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Macro.hpp /// \brief Useful macrodefines. /// \date 2015-2016 diff --git a/code/X3DImporter_Metadata.cpp b/code/X3DImporter_Metadata.cpp index 41f2678fa..1f57d9f63 100644 --- a/code/X3DImporter_Metadata.cpp +++ b/code/X3DImporter_Metadata.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Metadata.cpp /// \brief Parsing data from nodes of "Metadata" set of X3D. /// \date 2015-2016 @@ -81,10 +120,10 @@ void X3DImporter::ParseNode_Metadata(CX3DImporter_NodeElement* pParentElement, c // /> void X3DImporter::ParseNode_MetadataBoolean() { -std::string def, use; -std::string name, reference; -std::list value; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + std::list value; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -105,10 +144,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_MetadataDouble() { -std::string def, use; -std::string name, reference; -std::list value; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + std::list value; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -129,10 +168,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_MetadataFloat() { -std::string def, use; -std::string name, reference; -std::list value; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + std::list value; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -153,10 +192,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_MetadataInteger() { -std::string def, use; -std::string name, reference; -std::list value; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + std::list value; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -176,9 +215,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_MetadataSet() { -std::string def, use; -std::string name, reference; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -216,10 +255,10 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_MetadataString() { -std::string def, use; -std::string name, reference; -std::list value; -CX3DImporter_NodeElement* ne; + std::string def, use; + std::string name, reference; + std::list value; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Networking.cpp b/code/X3DImporter_Networking.cpp index b70bc7c02..4a75c9e66 100644 --- a/code/X3DImporter_Networking.cpp +++ b/code/X3DImporter_Networking.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Networking.cpp /// \brief Parsing data from nodes of "Networking" set of X3D. /// \date 2015-2016 @@ -24,9 +63,9 @@ namespace Assimp // /> void X3DImporter::ParseNode_Networking_Inline() { -std::string def, use; -bool load = true; -std::list url; + std::string def, use; + bool load = true; + std::list url; MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Node.hpp b/code/X3DImporter_Node.hpp index 16198d1f9..87ee73866 100644 --- a/code/X3DImporter_Node.hpp +++ b/code/X3DImporter_Node.hpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Node.hpp /// \brief Elements of scene graph. /// \date 2015-2016 @@ -7,8 +46,8 @@ #define INCLUDED_AI_X3D_IMPORTER_NODE_H // Header files, Assimp. -#include "assimp/scene.h" -#include "assimp/types.h" +#include +#include // Header files, stdlib. #include diff --git a/code/X3DImporter_Postprocess.cpp b/code/X3DImporter_Postprocess.cpp index e65c188ac..37acb0fe8 100644 --- a/code/X3DImporter_Postprocess.cpp +++ b/code/X3DImporter_Postprocess.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Postprocess.cpp /// \brief Convert built scenegraph and objects to Assimp scenegraph. /// \date 2015-2016 @@ -20,9 +59,9 @@ namespace Assimp aiMatrix4x4 X3DImporter::PostprocessHelper_Matrix_GlobalToCurrent() const { -CX3DImporter_NodeElement* cur_node; -std::list matr; -aiMatrix4x4 out_matr; + CX3DImporter_NodeElement* cur_node; + std::list matr; + aiMatrix4x4 out_matr; // starting walk from current element to root cur_node = NodeElement_Cur; @@ -100,9 +139,9 @@ bool X3DImporter::PostprocessHelper_ElementIsMesh(const CX3DImporter_NodeElement void X3DImporter::Postprocess_BuildLight(const CX3DImporter_NodeElement& pNodeElement, std::list& pSceneLightList) const { -const CX3DImporter_NodeElement_Light& ne = *((CX3DImporter_NodeElement_Light*)&pNodeElement); -aiMatrix4x4 transform_matr = PostprocessHelper_Matrix_GlobalToCurrent(); -aiLight* new_light = new aiLight; + const CX3DImporter_NodeElement_Light& ne = *( ( CX3DImporter_NodeElement_Light* ) &pNodeElement ); + aiMatrix4x4 transform_matr = PostprocessHelper_Matrix_GlobalToCurrent(); + aiLight* new_light = new aiLight; new_light->mName = ne.ID; new_light->mColorAmbient = ne.Color * ne.AmbientIntensity; @@ -564,10 +603,10 @@ void X3DImporter::Postprocess_BuildMesh(const CX3DImporter_NodeElement& pNodeEle void X3DImporter::Postprocess_BuildNode(const CX3DImporter_NodeElement& pNodeElement, aiNode& pSceneNode, std::list& pSceneMeshList, std::list& pSceneMaterialList, std::list& pSceneLightList) const { -std::list::const_iterator chit_begin = pNodeElement.Child.begin(); -std::list::const_iterator chit_end = pNodeElement.Child.end(); -std::list SceneNode_Child; -std::list SceneNode_Mesh; + std::list::const_iterator chit_begin = pNodeElement.Child.begin(); + std::list::const_iterator chit_end = pNodeElement.Child.end(); + std::list SceneNode_Child; + std::list SceneNode_Mesh; // At first read all metadata Postprocess_CollectMetadata(pNodeElement, pSceneNode); @@ -649,10 +688,10 @@ std::list SceneNode_Mesh; void X3DImporter::Postprocess_BuildShape(const CX3DImporter_NodeElement_Shape& pShapeNodeElement, std::list& pNodeMeshInd, std::list& pSceneMeshList, std::list& pSceneMaterialList) const { -aiMaterial* tmat = nullptr; -aiMesh* tmesh = nullptr; -CX3DImporter_NodeElement::EType mesh_type = CX3DImporter_NodeElement::ENET_Invalid; -unsigned int mat_ind = 0; + aiMaterial* tmat = nullptr; + aiMesh* tmesh = nullptr; + CX3DImporter_NodeElement::EType mesh_type = CX3DImporter_NodeElement::ENET_Invalid; + unsigned int mat_ind = 0; for(std::list::const_iterator it = pShapeNodeElement.Child.begin(); it != pShapeNodeElement.Child.end(); it++) { @@ -714,8 +753,8 @@ unsigned int mat_ind = 0; void X3DImporter::Postprocess_CollectMetadata(const CX3DImporter_NodeElement& pNodeElement, aiNode& pSceneNode) const { -std::list meta_list; -size_t meta_idx; + std::list meta_list; + size_t meta_idx; PostprocessHelper_CollectMetadata(pNodeElement, meta_list);// find metadata in current node element. if(meta_list.size() > 0) diff --git a/code/X3DImporter_Rendering.cpp b/code/X3DImporter_Rendering.cpp index e694e727e..ce0d7b607 100644 --- a/code/X3DImporter_Rendering.cpp +++ b/code/X3DImporter_Rendering.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Rendering.cpp /// \brief Parsing data from nodes of "Rendering" set of X3D. /// \date 2015-2016 @@ -18,9 +57,9 @@ namespace Assimp // /> void X3DImporter::ParseNode_Rendering_Color() { -std::string use, def; -std::list color; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list color; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -56,9 +95,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Rendering_ColorRGBA() { -std::string use, def; -std::list color; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list color; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -94,9 +133,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Rendering_Coordinate() { -std::string use, def; -std::list point; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list point; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -139,11 +178,11 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_IndexedLineSet() { -std::string use, def; -std::list colorIndex; -bool colorPerVertex = true; -std::list coordIndex; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list colorIndex; + bool colorPerVertex = true; + std::list coordIndex; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -213,13 +252,13 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_IndexedTriangleFanSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -std::list index; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + std::list index; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -294,13 +333,13 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_IndexedTriangleSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -std::list index; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + std::list index; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -375,13 +414,13 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_IndexedTriangleStripSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -std::list index; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + std::list index; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -451,9 +490,9 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_LineSet() { -std::string use, def; -std::list vertexCount; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list vertexCount; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -525,8 +564,8 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_PointSet() { -std::string use, def; -CX3DImporter_NodeElement* ne; + std::string use, def; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -584,13 +623,13 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_TriangleFanSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -std::list fanCount; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + std::list fanCount; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -700,12 +739,12 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_TriangleSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -775,13 +814,13 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Rendering_TriangleStripSet() { -std::string use, def; -bool ccw = true; -bool colorPerVertex = true; -std::list stripCount; -bool normalPerVertex = true; -bool solid = true; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool ccw = true; + bool colorPerVertex = true; + std::list stripCount; + bool normalPerVertex = true; + bool solid = true; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Shape.cpp b/code/X3DImporter_Shape.cpp index c974f70ce..7b3c7da77 100644 --- a/code/X3DImporter_Shape.cpp +++ b/code/X3DImporter_Shape.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Shape.cpp /// \brief Parsing data from nodes of "Shape" set of X3D. /// \date 2015-2016 @@ -28,8 +67,8 @@ namespace Assimp // NOTE Geometry nodes that represent lines or points do not support lighting. void X3DImporter::ParseNode_Shape_Shape() { -std::string use, def; -CX3DImporter_NodeElement* ne; + std::string use, def; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -105,8 +144,8 @@ CX3DImporter_NodeElement* ne; // void X3DImporter::ParseNode_Shape_Appearance() { -std::string use, def; -CX3DImporter_NodeElement* ne; + std::string use, def; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -158,14 +197,14 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Shape_Material() { -std::string use, def; -float ambientIntensity = 0.2f; -float shininess = 0.2f; -float transparency = 0; -aiColor3D diffuseColor(0.8f, 0.8f, 0.8f); -aiColor3D emissiveColor(0, 0, 0); -aiColor3D specularColor(0, 0, 0); -CX3DImporter_NodeElement* ne; + std::string use, def; + float ambientIntensity = 0.2f; + float shininess = 0.2f; + float transparency = 0; + aiColor3D diffuseColor(0.8f, 0.8f, 0.8f); + aiColor3D emissiveColor(0, 0, 0); + aiColor3D specularColor(0, 0, 0); + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/X3DImporter_Texturing.cpp b/code/X3DImporter_Texturing.cpp index 006264440..8372a231b 100644 --- a/code/X3DImporter_Texturing.cpp +++ b/code/X3DImporter_Texturing.cpp @@ -1,3 +1,42 @@ +/* +Open Asset Import Library (assimp) +---------------------------------------------------------------------- + +Copyright (c) 2006-2016, assimp team +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above +copyright notice, this list of conditions and the +following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the +following disclaimer in the documentation and/or other +materials provided with the distribution. + +* Neither the name of the assimp team, nor the names of its +contributors may be used to endorse or promote products +derived from this software without specific prior +written permission of the assimp team. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- +*/ /// \file X3DImporter_Texturing.cpp /// \brief Parsing data from nodes of "Texturing" set of X3D. /// \date 2015-2016 @@ -21,11 +60,11 @@ namespace Assimp // When the url field contains no values ([]), texturing is disabled. void X3DImporter::ParseNode_Texturing_ImageTexture() { -std::string use, def; -bool repeatS = true; -bool repeatT = true; -std::list url; -CX3DImporter_NodeElement* ne; + std::string use, def; + bool repeatS = true; + bool repeatT = true; + std::list url; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -70,9 +109,9 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Texturing_TextureCoordinate() { -std::string use, def; -std::list point; -CX3DImporter_NodeElement* ne; + std::string use, def; + std::list point; + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); @@ -111,12 +150,12 @@ CX3DImporter_NodeElement* ne; // /> void X3DImporter::ParseNode_Texturing_TextureTransform() { -std::string use, def; -aiVector2D center(0, 0); -float rotation = 0; -aiVector2D scale(1, 1); -aiVector2D translation(0, 0); -CX3DImporter_NodeElement* ne; + std::string use, def; + aiVector2D center(0, 0); + float rotation = 0; + aiVector2D scale(1, 1); + aiVector2D translation(0, 0); + CX3DImporter_NodeElement* ne( nullptr ); MACRO_ATTRREAD_LOOPBEG; MACRO_ATTRREAD_CHECKUSEDEF_RET(def, use); diff --git a/code/glTFAsset.h b/code/glTFAsset.h index e34b05f5c..78b456405 100644 --- a/code/glTFAsset.h +++ b/code/glTFAsset.h @@ -236,6 +236,32 @@ namespace glTF BufferViewTarget_ELEMENT_ARRAY_BUFFER = 34963 }; + //! Values for the Sampler::magFilter field + enum SamplerMagFilter + { + SamplerMagFilter_Nearest = 9728, + SamplerMagFilter_Linear = 9729 + }; + + //! Values for the Sampler::minFilter field + enum SamplerMinFilter + { + SamplerMinFilter_Nearest = 9728, + SamplerMinFilter_Linear = 9729, + SamplerMinFilter_Nearest_Mipmap_Nearest = 9984, + SamplerMinFilter_Linear_Mipmap_Nearest = 9985, + SamplerMinFilter_Nearest_Mipmap_Linear = 9986, + SamplerMinFilter_Linear_Mipmap_Linear = 9987 + }; + + //! Values for the Sampler::wrapS and Sampler::wrapT field + enum SamplerWrap + { + SamplerWrap_Clamp_To_Edge = 33071, + SamplerWrap_Mirrored_Repeat = 33648, + SamplerWrap_Repeat = 10497 + }; + //! Values for the Texture::format and Texture::internalFormat fields enum TextureFormat { @@ -377,8 +403,8 @@ namespace glTF ComponentType componentType; //!< The datatype of components in the attribute. (required) unsigned int count; //!< The number of attributes referenced by this accessor. (required) AttribType::Value type; //!< Specifies if the attribute is a scalar, vector, or matrix. (required) - //std::vector max; //!< Maximum value of each component in this attribute. - //std::vector min; //!< Minimum value of each component in this attribute. + std::vector max; //!< Maximum value of each component in this attribute. + std::vector min; //!< Minimum value of each component in this attribute. unsigned int GetNumComponents(); unsigned int GetBytesPerComponent(); @@ -812,8 +838,14 @@ namespace glTF struct Sampler : public Object { + SamplerMagFilter magFilter; //!< The texture magnification filter. (required) + SamplerMinFilter minFilter; //!< The texture minification filter. (required) + SamplerWrap wrapS; //!< The texture wrapping in the S direction. (required) + SamplerWrap wrapT; //!< The texture wrapping in the T direction. (required) + Sampler() {} void Read(Value& obj, Asset& r); + void SetDefaults(); }; struct Scene : public Object @@ -860,8 +892,8 @@ namespace glTF //! A texture and its sampler. struct Texture : public Object { - //Ref source; //!< The ID of the sampler used by this texture. (required) - Ref source; //!< The ID of the image used by this texture. (required) + Ref sampler; //!< The ID of the sampler used by this texture. (required) + Ref source; //!< The ID of the image used by this texture. (required) //TextureFormat format; //!< The texture's format. (default: TextureFormat_RGBA) //TextureFormat internalFormat; //!< The texture's internal format. (default: TextureFormat_RGBA) @@ -921,7 +953,7 @@ namespace glTF //! (Implemented in glTFAssetWriter.h) template void WriteLazyDict(LazyDict& d, AssetWriter& w); - + //! Manages lazy loading of the glTF top-level objects, and keeps a reference to them by ID //! It is the owner the loaded objects, so when it is destroyed it also deletes them @@ -983,7 +1015,7 @@ namespace glTF int version; //!< The glTF format version (should be 1) void Read(Document& doc); - + AssetMetadata() : premultipliedAlpha(false) , version(0) @@ -1049,7 +1081,7 @@ namespace glTF LazyDict meshes; LazyDict nodes; //LazyDict programs; - //LazyDict samplers; + LazyDict samplers; LazyDict scenes; //LazyDict shaders; //LazyDict skins; @@ -1074,7 +1106,7 @@ namespace glTF , meshes (*this, "meshes") , nodes (*this, "nodes") //, programs (*this, "programs") - //, samplers (*this, "samplers") + , samplers (*this, "samplers") , scenes (*this, "scenes") //, shaders (*this, "shaders") //, skins (*this, "skins") diff --git a/code/glTFAsset.inl b/code/glTFAsset.inl index 64966fb28..4b2f72969 100644 --- a/code/glTFAsset.inl +++ b/code/glTFAsset.inl @@ -53,7 +53,7 @@ using namespace Assimp; namespace glTF { namespace { - + // // JSON Value reading helpers // @@ -62,7 +62,7 @@ namespace { struct ReadHelper { static bool Read(Value& val, T& out) { return val.IsInt() ? out = static_cast(val.GetInt()), true : false; }}; - + template<> struct ReadHelper { static bool Read(Value& val, bool& out) { return val.IsBool() ? out = val.GetBool(), true : false; }}; @@ -70,7 +70,7 @@ namespace { template<> struct ReadHelper { static bool Read(Value& val, float& out) { return val.IsNumber() ? out = static_cast(val.GetDouble()), true : false; }}; - + template struct ReadHelper { static bool Read(Value& val, float (&out)[N]) { if (!val.IsArray() || val.Size() != N) return false; for (unsigned int i = 0; i < N; ++i) { @@ -312,7 +312,7 @@ inline void Buffer::Read(Value& obj, Asset& r) if (file) { bool ok = LoadFromStream(*file, byteLength); delete file; - + if (!ok) throw DeadlyImportError("GLTF: error while reading referenced file \"" + std::string(uri) + "\"" ); } @@ -439,7 +439,7 @@ inline void BufferView::Read(Value& obj, Asset& r) if (bufferId) { buffer = r.buffers.Get(bufferId); } - + byteOffset = MemberOrDefault(obj, "byteOffset", 0u); byteLength = MemberOrDefault(obj, "byteLength", 0u); } @@ -599,7 +599,7 @@ inline Image::Image() inline void Image::Read(Value& obj, Asset& r) { - // Check for extensions first (to detect binary embedded data) + // Check for extensions first (to detect binary embedded data) if (Value* extensions = FindObject(obj, "extensions")) { if (r.extensionsUsed.KHR_binary_glTF) { if (Value* ext = FindObject(*extensions, "KHR_binary_glTF")) { @@ -665,12 +665,35 @@ inline void Image::SetData(uint8_t* data, size_t length, Asset& r) } } +inline void Sampler::Read(Value& obj, Asset& r) +{ + SetDefaults(); + + ReadMember(obj, "magFilter", magFilter); + ReadMember(obj, "minFilter", minFilter); + ReadMember(obj, "wrapS", wrapS); + ReadMember(obj, "wrapT", wrapT); +} + +inline void Sampler::SetDefaults() +{ + magFilter = SamplerMagFilter_Linear; + minFilter = SamplerMinFilter_Linear; + wrapS = SamplerWrap_Repeat; + wrapT = SamplerWrap_Repeat; +} + inline void Texture::Read(Value& obj, Asset& r) { const char* sourcestr; if (ReadMember(obj, "source", sourcestr)) { source = r.images.Get(sourcestr); } + + const char* samplerstr; + if (ReadMember(obj, "sampler", samplerstr)) { + sampler = r.samplers.Get(samplerstr); + } } namespace { @@ -1132,7 +1155,7 @@ inline void Node::Read(Value& obj, Asset& r) } } - + if (Value* matrix = FindArray(obj, "matrix")) { ReadValue(*matrix, this->matrix); } @@ -1408,13 +1431,13 @@ inline std::string Asset::FindUniqueID(const std::string& str, const char* suffi id = buffer; it = mUsedIds.find(id); } - + return id; } namespace Util { - inline + inline bool ParseDataURI(const char* const_uri, size_t uriLen, DataURI& out) { if ( NULL == const_uri ) { return false; diff --git a/code/glTFAssetWriter.inl b/code/glTFAssetWriter.inl index af27604f2..2022305db 100644 --- a/code/glTFAssetWriter.inl +++ b/code/glTFAssetWriter.inl @@ -56,7 +56,16 @@ namespace glTF { inline Value& MakeValue(Value& val, float(&r)[N], MemoryPoolAllocator<>& al) { val.SetArray(); val.Reserve(N, al); - for (decltype(N) i = 0; i < N; ++i) { + for (decltype(N) i = 0; i < N; ++i) { + val.PushBack(r[i], al); + } + return val; + } + + inline Value& MakeValue(Value& val, const std::vector & r, MemoryPoolAllocator<>& al) { + val.SetArray(); + val.Reserve(r.size(), al); + for (int i = 0; i < r.size(); ++i) { val.PushBack(r[i], al); } return val; @@ -85,6 +94,10 @@ namespace glTF { obj.AddMember("componentType", int(a.componentType), w.mAl); obj.AddMember("count", a.count, w.mAl); obj.AddMember("type", StringRef(AttribType::ToString(a.type)), w.mAl); + + Value vTmpMax, vTmpMin; + obj.AddMember("max", MakeValue(vTmpMax, a.max, w.mAl), w.mAl); + obj.AddMember("min", MakeValue(vTmpMin, a.min, w.mAl), w.mAl); } inline void Write(Value& obj, Animation& a, AssetWriter& w) @@ -285,7 +298,7 @@ namespace glTF { } primitives.PushBack(prim, w.mAl); } - + obj.AddMember("primitives", primitives, w.mAl); } @@ -323,7 +336,18 @@ namespace glTF { inline void Write(Value& obj, Sampler& b, AssetWriter& w) { - + if (b.wrapS) { + obj.AddMember("wrapS", b.wrapS, w.mAl); + } + if (b.wrapT) { + obj.AddMember("wrapT", b.wrapT, w.mAl); + } + if (b.magFilter) { + obj.AddMember("magFilter", b.magFilter, w.mAl); + } + if (b.minFilter) { + obj.AddMember("minFilter", b.minFilter, w.mAl); + } } inline void Write(Value& scene, Scene& s, AssetWriter& w) @@ -351,6 +375,9 @@ namespace glTF { if (tex.source) { obj.AddMember("source", Value(tex.source->id, w.mAl).Move(), w.mAl); } + if (tex.sampler) { + obj.AddMember("sampler", Value(tex.sampler->id, w.mAl).Move(), w.mAl); + } } inline void Write(Value& obj, Light& b, AssetWriter& w) @@ -487,13 +514,15 @@ namespace glTF { } } - + inline void AssetWriter::WriteMetadata() { Value asset; asset.SetObject(); { - asset.AddMember("version", mAsset.asset.version, mAl); + char versionChar[10]; + ai_snprintf(versionChar, sizeof(versionChar), "%d", mAsset.asset.version); + asset.AddMember("version", Value(versionChar, mAl).Move(), mAl); asset.AddMember("generator", Value(mAsset.asset.generator, mAl).Move(), mAl); } diff --git a/code/glTFExporter.cpp b/code/glTFExporter.cpp index 8f37452b1..ca170576b 100644 --- a/code/glTFExporter.cpp +++ b/code/glTFExporter.cpp @@ -193,6 +193,36 @@ inline Ref ExportData(Asset& a, std::string& meshName, Ref& bu acc->count = count; acc->type = typeOut; + // calculate min and max values + { + // Allocate and initialize with large values. + float float_MAX = 10000000000000; + for (int i = 0 ; i < numCompsOut ; i++) { + acc->min.push_back( float_MAX); + acc->max.push_back(-float_MAX); + } + + // Search and set extreme values. + float valueTmp; + for (int i = 0 ; i < count ; i++) { + for (int j = 0 ; j < numCompsOut ; j++) { + + if (numCompsOut == 1) { + valueTmp = static_cast(data)[i]; + } else { + valueTmp = static_cast(data)[i][j]; + } + + if (valueTmp < acc->min[j]) { + acc->min[j] = valueTmp; + } + if (valueTmp > acc->max[j]) { + acc->max[j] = valueTmp; + } + } + } + } + // copy the data acc->WriteData(count, data, numCompsIn*bytesPerComp); @@ -205,6 +235,52 @@ namespace { } } +void glTFExporter::GetTexSampler(const aiMaterial* mat, glTF::TexProperty& prop) +{ + std::string samplerId = mAsset->FindUniqueID("", "sampler"); + prop.texture->sampler = mAsset->samplers.Create(samplerId); + + aiTextureMapMode mapU, mapV; + aiGetMaterialInteger(mat,AI_MATKEY_MAPPINGMODE_U_DIFFUSE(0),(int*)&mapU); + aiGetMaterialInteger(mat,AI_MATKEY_MAPPINGMODE_V_DIFFUSE(0),(int*)&mapV); + + switch (mapU) { + case aiTextureMapMode_Wrap: + prop.texture->sampler->wrapS = SamplerWrap_Repeat; + break; + case aiTextureMapMode_Clamp: + prop.texture->sampler->wrapS = SamplerWrap_Clamp_To_Edge; + break; + case aiTextureMapMode_Mirror: + prop.texture->sampler->wrapS = SamplerWrap_Mirrored_Repeat; + break; + case aiTextureMapMode_Decal: + default: + prop.texture->sampler->wrapS = SamplerWrap_Repeat; + break; + }; + + switch (mapV) { + case aiTextureMapMode_Wrap: + prop.texture->sampler->wrapT = SamplerWrap_Repeat; + break; + case aiTextureMapMode_Clamp: + prop.texture->sampler->wrapT = SamplerWrap_Clamp_To_Edge; + break; + case aiTextureMapMode_Mirror: + prop.texture->sampler->wrapT = SamplerWrap_Mirrored_Repeat; + break; + case aiTextureMapMode_Decal: + default: + prop.texture->sampler->wrapT = SamplerWrap_Repeat; + break; + }; + + // Hard coded Texture filtering options because I do not know where to find them in the aiMaterial. + prop.texture->sampler->magFilter = SamplerMagFilter_Linear; + prop.texture->sampler->minFilter = SamplerMinFilter_Linear; +} + void glTFExporter::GetMatColorOrTex(const aiMaterial* mat, glTF::TexProperty& prop, const char* propName, int type, int idx, aiTextureType tt) { aiString tex; @@ -244,6 +320,8 @@ void glTFExporter::GetMatColorOrTex(const aiMaterial* mat, glTF::TexProperty& pr else { prop.texture->source->uri = path; } + + GetTexSampler(mat, prop); } } } @@ -254,6 +332,7 @@ void glTFExporter::GetMatColorOrTex(const aiMaterial* mat, glTF::TexProperty& pr } } + void glTFExporter::ExportMaterials() { aiString aiName; @@ -369,7 +448,7 @@ void glTFExporter::ExportMeshes() if(comp_allow) idx_srcdata_tc.push_back(b->byteLength);// Store index of texture coordinates array. - Ref tc = ExportData(*mAsset, meshId, b, aim->mNumVertices, aim->mTextureCoords[i], AttribType::VEC3, type, ComponentType_FLOAT, true); + Ref tc = ExportData(*mAsset, meshId, b, aim->mNumVertices, aim->mTextureCoords[i], AttribType::VEC3, type, ComponentType_FLOAT, false); if (tc) p.attributes.texcoord.push_back(tc); } } diff --git a/code/glTFExporter.h b/code/glTFExporter.h index dfd0108b5..554bb17aa 100644 --- a/code/glTFExporter.h +++ b/code/glTFExporter.h @@ -94,6 +94,7 @@ namespace Assimp void WriteBinaryData(IOStream* outfile, std::size_t sceneLength); + void GetTexSampler(const aiMaterial* mat, glTF::TexProperty& prop); void GetMatColorOrTex(const aiMaterial* mat, glTF::TexProperty& prop, const char* propName, int type, int idx, aiTextureType tt); void ExportMetadata(); void ExportMaterials(); diff --git a/include/assimp/scene.h b/include/assimp/scene.h index 80542a67b..d9799db99 100644 --- a/include/assimp/scene.h +++ b/include/assimp/scene.h @@ -38,7 +38,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------- */ -#pragma once /** @file scene.h * @brief Defines the data structures in which the imported scene is returned. diff --git a/test/models/OpenGEX/animated.ogex b/test/models/OpenGEX/animated.ogex deleted file mode 100644 index de52666a7..000000000 --- a/test/models/OpenGEX/animated.ogex +++ /dev/null @@ -1,5044 +0,0 @@ -Metric (key = "distance") {float {1.0}} -Metric (key = "angle") {float {1.0}} -Metric (key = "time") {float {1.0}} -Metric (key = "up") {string {"z"}} - -Node $node1 -{ - Name {string {"Box001"}} - - Transform - { - float[16] - { - {1.0, 5.235987998730707e-08, 0.0, 0.0, - -5.235987998730707e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node2 - { - Name {string {"Box001-Pivot"}} - ObjectRef {ref {$geometry1}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1859470009803772, 0.0, 0.0, 1.0} - } - } - } - - Node $node3 - { - Name {string {"Box002"}} - - Transform - { - float[16] - { - {1.0, 5.235987998730707e-08, 0.0, 0.0, - -5.235987998730707e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node4 - { - Name {string {"Box002-Pivot"}} - ObjectRef {ref {$geometry2}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1859470009803772, 1.8918230533599854, 0.0, 1.0} - } - } - } - - Node $node5 - { - Name {string {"Box003"}} - - Transform - { - float[16] - { - {1.0, 5.235987998730707e-08, 0.0, 0.0, - -5.235987998730707e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node6 - { - Name {string {"Box003-Pivot"}} - ObjectRef {ref {$geometry3}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1859460026025772, 3.783642053604126, 0.0, 1.0} - } - } - } - - Node $node7 - { - Name {string {"Box004"}} - - Transform - { - float[16] - { - {1.0, 5.235987998730707e-08, 0.0, 0.0, - -5.235987998730707e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node8 - { - Name {string {"Box004-Pivot"}} - ObjectRef {ref {$geometry4}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18594400584697723, 5.6754608154296875, 0.0, 1.0} - } - } - } - - Node $node9 - { - Name {string {"Box005"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node10 - { - Name {string {"Box005-Pivot"}} - ObjectRef {ref {$geometry5}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18594199419021606, 7.567279815673828, 0.0, 1.0} - } - } - } - - Node $node11 - { - Name {string {"Box006"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node12 - { - Name {string {"Box006-Pivot"}} - ObjectRef {ref {$geometry6}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1859389990568161, 9.459098815917969, 0.0, 1.0} - } - } - } - - Node $node13 - { - Name {string {"Box007"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node14 - { - Name {string {"Box007-Pivot"}} - ObjectRef {ref {$geometry7}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18593500554561615, 11.35091781616211, 0.0, 1.0} - } - } - } - - Node $node15 - { - Name {string {"Box008"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node16 - { - Name {string {"Box008-Pivot"}} - ObjectRef {ref {$geometry8}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.185930997133255, 13.24273681640625, 0.0, 1.0} - } - } - } - - Node $node17 - { - Name {string {"Box009"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node18 - { - Name {string {"Box009-Pivot"}} - ObjectRef {ref {$geometry9}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18592700362205505, 15.13455581665039, 0.0, 1.0} - } - } - } - - Node $node19 - { - Name {string {"Box010"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node20 - { - Name {string {"Box010-Pivot"}} - ObjectRef {ref {$geometry10}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18592199683189392, 17.026376724243164, 0.0, 1.0} - } - } - } - - Node $node21 - { - Name {string {"Box011"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node22 - { - Name {string {"Box011-Pivot"}} - ObjectRef {ref {$geometry11}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.185916006565094, 18.918193817138672, 0.0, 1.0} - } - } - } - - Node $node23 - { - Name {string {"Box012"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node24 - { - Name {string {"Box012-Pivot"}} - ObjectRef {ref {$geometry12}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18591000139713287, 20.810012817382812, 0.0, 1.0} - } - } - } - - Node $node25 - { - Name {string {"Box013"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node26 - { - Name {string {"Box013-Pivot"}} - ObjectRef {ref {$geometry13}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18590299785137177, 22.701831817626953, 0.0, 1.0} - } - } - } - - Node $node27 - { - Name {string {"Box014"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node28 - { - Name {string {"Box014-Pivot"}} - ObjectRef {ref {$geometry14}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18589499592781067, 24.593652725219727, 0.0, 1.0} - } - } - } - - Node $node29 - { - Name {string {"Box015"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node30 - { - Name {string {"Box015-Pivot"}} - ObjectRef {ref {$geometry15}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18588699400424957, 26.485469818115234, 0.0, 1.0} - } - } - } - - Node $node31 - { - Name {string {"Box016"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node32 - { - Name {string {"Box016-Pivot"}} - ObjectRef {ref {$geometry16}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18587899208068848, 28.377288818359375, 0.0, 1.0} - } - } - } - - Node $node33 - { - Name {string {"Box017"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node34 - { - Name {string {"Box017-Pivot"}} - ObjectRef {ref {$geometry17}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1858700066804886, 30.269107818603516, 0.0, 1.0} - } - } - } - - Node $node35 - { - Name {string {"Box018"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node36 - { - Name {string {"Box018-Pivot"}} - ObjectRef {ref {$geometry18}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18585999310016632, 32.160926818847656, 0.0, 1.0} - } - } - } - - Node $node37 - { - Name {string {"Box019"}} - - Transform - { - float[16] - { - {1.0, 5.235989419816178e-08, 0.0, 0.0, - -5.235989419816178e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node38 - { - Name {string {"Box019-Pivot"}} - ObjectRef {ref {$geometry19}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18584999442100525, 34.0527458190918, 0.0, 1.0} - } - } - } - - Node $node39 - { - Name {string {"Box020"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node40 - { - Name {string {"Box020-Pivot"}} - ObjectRef {ref {$geometry20}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1858389973640442, 35.94456481933594, 0.0, 1.0} - } - } - } - - Node $node41 - { - Name {string {"Box021"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node42 - { - Name {string {"Box021-Pivot"}} - ObjectRef {ref {$geometry21}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18582700192928314, 37.83638381958008, 0.0, 1.0} - } - } - } - - Node $node43 - { - Name {string {"Box022"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node44 - { - Name {string {"Box022-Pivot"}} - ObjectRef {ref {$geometry22}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1858150064945221, 39.72820281982422, 0.0, 1.0} - } - } - } - - Node $node45 - { - Name {string {"Box023"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node46 - { - Name {string {"Box023-Pivot"}} - ObjectRef {ref {$geometry23}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18580299615859985, 41.620025634765625, 0.0, 1.0} - } - } - } - - Node $node47 - { - Name {string {"Box024"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node48 - { - Name {string {"Box024-Pivot"}} - ObjectRef {ref {$geometry24}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18579000234603882, 43.5118408203125, 0.0, 1.0} - } - } - } - - Node $node49 - { - Name {string {"Box025"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node50 - { - Name {string {"Box025-Pivot"}} - ObjectRef {ref {$geometry25}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1857759952545166, 45.40365982055664, 0.0, 1.0} - } - } - } - - Node $node51 - { - Name {string {"Box026"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node52 - { - Name {string {"Box026-Pivot"}} - ObjectRef {ref {$geometry26}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18576200306415558, 47.29547882080078, 0.0, 1.0} - } - } - } - - Node $node53 - { - Name {string {"Box027"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node54 - { - Name {string {"Box027-Pivot"}} - ObjectRef {ref {$geometry27}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18574699759483337, 49.18730545043945, 0.0, 1.0} - } - } - } - - Node $node55 - { - Name {string {"Box028"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node56 - { - Name {string {"Box028-Pivot"}} - ObjectRef {ref {$geometry28}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18573099374771118, 51.07911682128906, 0.0, 1.0} - } - } - } - - Node $node57 - { - Name {string {"Box029"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node58 - { - Name {string {"Box029-Pivot"}} - ObjectRef {ref {$geometry29}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18571500480175018, 52.97093963623047, 0.0, 1.0} - } - } - } - - Node $node59 - { - Name {string {"Box030"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node60 - { - Name {string {"Box030-Pivot"}} - ObjectRef {ref {$geometry30}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.185699000954628, 54.862754821777344, 0.0, 1.0} - } - } - } - - Node $node61 - { - Name {string {"Box031"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node62 - { - Name {string {"Box031-Pivot"}} - ObjectRef {ref {$geometry31}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1856819987297058, 56.75457763671875, 0.0, 1.0} - } - } - } - - Node $node63 - { - Name {string {"Box032"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node64 - { - Name {string {"Box032-Pivot"}} - ObjectRef {ref {$geometry32}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18566399812698364, 58.646392822265625, 0.0, 1.0} - } - } - } - - Node $node65 - { - Name {string {"Box033"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node66 - { - Name {string {"Box033-Pivot"}} - ObjectRef {ref {$geometry33}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18564599752426147, 60.53821563720703, 0.0, 1.0} - } - } - } - - Node $node67 - { - Name {string {"Box034"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node68 - { - Name {string {"Box034-Pivot"}} - ObjectRef {ref {$geometry34}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18562699854373932, 62.430030822753906, 0.0, 1.0} - } - } - } - - Node $node69 - { - Name {string {"Box035"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node70 - { - Name {string {"Box035-Pivot"}} - ObjectRef {ref {$geometry35}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18560700118541718, 64.32185363769531, 0.0, 1.0} - } - } - } - - Node $node71 - { - Name {string {"Box036"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node72 - { - Name {string {"Box036-Pivot"}} - ObjectRef {ref {$geometry36}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18558700382709503, 66.21366882324219, 0.0, 1.0} - } - } - } - - Node $node73 - { - Name {string {"Box037"}} - - Transform - { - float[16] - { - {1.0, 5.2359951041580644e-08, 0.0, 0.0, - -5.2359951041580644e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node74 - { - Name {string {"Box037-Pivot"}} - ObjectRef {ref {$geometry37}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1855670064687729, 68.1054916381836, 0.0, 1.0} - } - } - } - - Node $node75 - { - Name {string {"Box038"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node76 - { - Name {string {"Box038-Pivot"}} - ObjectRef {ref {$geometry38}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18554599583148956, 69.99730682373047, 0.0, 1.0} - } - } - } - - Node $node77 - { - Name {string {"Box039"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node78 - { - Name {string {"Box039-Pivot"}} - ObjectRef {ref {$geometry39}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18552400171756744, 71.88912200927734, 0.0, 1.0} - } - } - } - - Node $node79 - { - Name {string {"Box040"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node80 - { - Name {string {"Box040-Pivot"}} - ObjectRef {ref {$geometry40}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18550199270248413, 73.78095245361328, 0.0, 1.0} - } - } - } - - Node $node81 - { - Name {string {"Box041"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node82 - { - Name {string {"Box041-Pivot"}} - ObjectRef {ref {$geometry41}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18547900021076202, 75.67276763916016, 0.0, 1.0} - } - } - } - - Node $node83 - { - Name {string {"Box042"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node84 - { - Name {string {"Box042-Pivot"}} - ObjectRef {ref {$geometry42}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18545599281787872, 77.56458282470703, 0.0, 1.0} - } - } - } - - Node $node85 - { - Name {string {"Box043"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node86 - { - Name {string {"Box043-Pivot"}} - ObjectRef {ref {$geometry43}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18543200194835663, 79.4563980102539, 0.0, 1.0} - } - } - } - - Node $node87 - { - Name {string {"Box044"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node88 - { - Name {string {"Box044-Pivot"}} - ObjectRef {ref {$geometry44}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18540699779987335, 81.34822082519531, 0.0, 1.0} - } - } - } - - Node $node89 - { - Name {string {"Box045"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node90 - { - Name {string {"Box045-Pivot"}} - ObjectRef {ref {$geometry45}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18538199365139008, 83.24005126953125, 0.0, 1.0} - } - } - } - - Node $node91 - { - Name {string {"Box046"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node92 - { - Name {string {"Box046-Pivot"}} - ObjectRef {ref {$geometry46}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.185356006026268, 85.1318588256836, 0.0, 1.0} - } - } - } - - Node $node93 - { - Name {string {"Box047"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node94 - { - Name {string {"Box047-Pivot"}} - ObjectRef {ref {$geometry47}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18533000349998474, 87.02367401123047, 0.0, 1.0} - } - } - } - - Node $node95 - { - Name {string {"Box048"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node96 - { - Name {string {"Box048-Pivot"}} - ObjectRef {ref {$geometry48}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1853030025959015, 88.9155044555664, 0.0, 1.0} - } - } - } - - Node $node97 - { - Name {string {"Box049"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node98 - { - Name {string {"Box049-Pivot"}} - ObjectRef {ref {$geometry49}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18527600169181824, 90.80731964111328, 0.0, 1.0} - } - } - } - - Node $node99 - { - Name {string {"Box050"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node100 - { - Name {string {"Box050-Pivot"}} - ObjectRef {ref {$geometry50}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.185248002409935, 92.69913482666016, 0.0, 1.0} - } - } - } - - Node $node101 - { - Name {string {"Box051"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node102 - { - Name {string {"Box051-Pivot"}} - ObjectRef {ref {$geometry51}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18521900475025177, 94.59095001220703, 0.0, 1.0} - } - } - } - - Node $node103 - { - Name {string {"Box052"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node104 - { - Name {string {"Box052-Pivot"}} - ObjectRef {ref {$geometry52}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18518999218940735, 96.48278045654297, 0.0, 1.0} - } - } - } - - Node $node105 - { - Name {string {"Box053"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node106 - { - Name {string {"Box053-Pivot"}} - ObjectRef {ref {$geometry53}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18515999615192413, 98.37458801269531, 0.0, 1.0} - } - } - } - - Node $node107 - { - Name {string {"Box054"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node108 - { - Name {string {"Box054-Pivot"}} - ObjectRef {ref {$geometry54}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18513000011444092, 100.26640319824219, 0.0, 1.0} - } - } - } - - Node $node109 - { - Name {string {"Box055"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node110 - { - Name {string {"Box055-Pivot"}} - ObjectRef {ref {$geometry55}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18509900569915771, 102.15821838378906, 0.0, 1.0} - } - } - } - - Node $node111 - { - Name {string {"Box056"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node112 - { - Name {string {"Box056-Pivot"}} - ObjectRef {ref {$geometry56}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18506799638271332, 104.05003356933594, 0.0, 1.0} - } - } - } - - Node $node113 - { - Name {string {"Box057"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node114 - { - Name {string {"Box057-Pivot"}} - ObjectRef {ref {$geometry57}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18503600358963013, 105.94184875488281, 0.0, 1.0} - } - } - } - - Node $node115 - { - Name {string {"Box058"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node116 - { - Name {string {"Box058-Pivot"}} - ObjectRef {ref {$geometry58}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18500299751758575, 107.83366394042969, 0.0, 1.0} - } - } - } - - Node $node117 - { - Name {string {"Box059"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node118 - { - Name {string {"Box059-Pivot"}} - ObjectRef {ref {$geometry59}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18497000634670258, 109.72547912597656, 0.0, 1.0} - } - } - } - - Node $node119 - { - Name {string {"Box060"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node120 - { - Name {string {"Box060-Pivot"}} - ObjectRef {ref {$geometry60}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18493600189685822, 111.61729431152344, 0.0, 1.0} - } - } - } - - Node $node121 - { - Name {string {"Box061"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node122 - { - Name {string {"Box061-Pivot"}} - ObjectRef {ref {$geometry61}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18490199744701385, 113.50910949707031, 0.0, 1.0} - } - } - } - - Node $node123 - { - Name {string {"Box062"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node124 - { - Name {string {"Box062-Pivot"}} - ObjectRef {ref {$geometry62}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.1848669946193695, 115.40092468261719, 0.0, 1.0} - } - } - } - - Node $node125 - { - Name {string {"Box063"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node126 - { - Name {string {"Box063-Pivot"}} - ObjectRef {ref {$geometry63}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18483200669288635, 117.29273223876953, 0.0, 1.0} - } - } - } - - Node $node127 - { - Name {string {"Box064"}} - - Transform - { - float[16] - { - {1.0, 5.235983735474292e-08, 0.0, 0.0, - -5.235983735474292e-08, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } - - GeometryNode $node128 - { - Name {string {"Box064-Pivot"}} - ObjectRef {ref {$geometry64}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.18479600548744202, 119.18455505371094, 0.0, 1.0} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } -} - -GeometryNode $node129 -{ - Name {string {"Cube"}} - ObjectRef {ref {$geometry65}} - MaterialRef (index = 0) {ref {$material1}} - - Transform - { - float[16] - { - {1.0, 0.0, 0.0, 0.0, - 0.0, 1.0, 0.0, 0.0, - 0.0, 0.0, 1.0, 0.0, - 0.0, 0.0, 0.0, 1.0} - } - } -} - -LightNode $node130 -{ - Name {string {"Lamp"}} - ObjectRef {ref {$light1}} - - Transform - { - float[16] - { - {-0.29086464643478394, 0.9551711678504944, -0.05518905818462372, 0.0, - -0.7711008191108704, -0.1998833566904068, 0.6045247316360474, 0.0, - 0.5663931965827942, 0.21839119493961334, 0.7946722507476807, 0.0, - 4.076245307922363, 1.0054539442062378, 5.903861999511719, 1.0} - } - } -} - -CameraNode $node131 -{ - Name {string {"Camera"}} - ObjectRef {ref {$camera1}} - - Transform - { - float[16] - { - {0.6858805418014526, 0.7276337742805481, -0.010816780850291252, 0.0, - -0.31737011671066284, 0.31246861815452576, 0.8953432440757751, 0.0, - 0.6548618674278259, -0.6106656193733215, 0.4452453553676605, 0.0, - 7.481131553649902, -6.5076398849487305, 5.34366512298584, 1.0} - } - } -} - -GeometryObject $geometry11 // Box011-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry65 // Cube -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {1.0, 0.9999999403953552, -1.0}, {1.0, -1.0, -1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {-0.9999999403953552, 1.0, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, - {1.0, 0.9999999403953552, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, {1.0, -1.0, -1.0}, {1.0, -1.0, -1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, - {-1.0000001192092896, -0.9999998211860657, -1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-0.9999999403953552, 1.0, 1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {1.0, 0.9999999403953552, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {-0.9999999403953552, 1.0, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, - {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, - {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry16 // Box016-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry29 // Box029-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry34 // Box034-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry57 // Box057-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry44 // Box044-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry33 // Box033-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry21 // Box021-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry56 // Box056-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry8 // Box008-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry5 // Box005-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry20 // Box020-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry51 // Box051-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry17 // Box017-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry12 // Box012-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry25 // Box025-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry39 // Box039-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry35 // Box035-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry43 // Box043-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry31 // Box031-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry55 // Box055-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry3 // Box003-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry53 // Box053-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry15 // Box015-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry28 // Box028-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry23 // Box023-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry60 // Box060-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry1 // Box001-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry4 // Box004-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry42 // Box042-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry24 // Box024-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry22 // Box022-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry62 // Box062-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry59 // Box059-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry10 // Box010-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry46 // Box046-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry19 // Box019-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry58 // Box058-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry14 // Box014-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry6 // Box006-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry36 // Box036-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry32 // Box032-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry50 // Box050-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry49 // Box049-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry47 // Box047-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry30 // Box030-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry38 // Box038-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry48 // Box048-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry61 // Box061-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry63 // Box063-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry64 // Box064-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry26 // Box026-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry18 // Box018-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry37 // Box037-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry9 // Box009-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry7 // Box007-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry54 // Box054-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry13 // Box013-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry2 // Box002-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry41 // Box041-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry27 // Box027-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry40 // Box040-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry45 // Box045-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -GeometryObject $geometry52 // Box052-Pivot -{ - Mesh (primitive = "triangles") - { - VertexArray (attrib = "position") - { - float[3] // 24 - { - {-0.5, -0.5, 0.0}, {-0.5, 0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 1.0}, - {-0.5, -0.5, 0.0}, {0.5, -0.5, 0.0}, {0.5, -0.5, 1.0}, {-0.5, -0.5, 1.0}, {0.5, -0.5, 0.0}, {0.5, 0.5, 0.0}, {0.5, 0.5, 1.0}, {0.5, -0.5, 1.0}, - {0.5, 0.5, 0.0}, {-0.5, 0.5, 0.0}, {-0.5, 0.5, 1.0}, {0.5, 0.5, 1.0}, {-0.5, 0.5, 0.0}, {-0.5, -0.5, 0.0}, {-0.5, -0.5, 1.0}, {-0.5, 0.5, 1.0} - } - } - - VertexArray (attrib = "normal") - { - float[3] // 24 - { - {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {-0.0, 0.0, -1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}, - {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {0.0, -1.0, -0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0}, {-1.0, 0.0, -0.0} - } - } - - VertexArray (attrib = "texcoord") - { - float[2] // 24 - { - {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, - {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0}, {0.0, 0.0}, {1.0, 0.0}, {1.0, 1.0}, {0.0, 1.0} - } - } - - IndexArray - { - unsigned_int32[3] // 12 - { - {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} - } - } - } -} - -LightObject $light1 (type = "point") // Lamp -{ - Color (attrib = "light") {float[3] {{1.0, 1.0, 1.0}}} - - Atten (curve = "inverse_square") - { - Param (attrib = "scale") {float {5.47722400800463}} - } -} - -CameraObject $camera1 // Camera -{ - Param (attrib = "fov") {float {0.8575560450553894}} - Param (attrib = "near") {float {0.10000000149011612}} - Param (attrib = "far") {float {100.0}} -} - -Material $material1 -{ - Name {string {"Material"}} - - Color (attrib = "diffuse") {float[3] {{0.6400000190734865, 0.6400000190734865, 0.6400000190734865}}} - Color (attrib = "specular") {float[3] {{0.5, 0.5, 0.5}}} - Param (attrib = "specular_power") {float {50}} -} diff --git a/test/models/OpenGEX/animation_example.ogex b/test/models/OpenGEX/animation_example.ogex new file mode 100644 index 000000000..bdce0bb31 --- /dev/null +++ b/test/models/OpenGEX/animation_example.ogex @@ -0,0 +1,1749 @@ +Metric (key = "distance") {float {1.0}} +Metric (key = "angle") {float {1.0}} +Metric (key = "time") {float {1.0}} +Metric (key = "up") {string {"z"}} + +Node $node1 +{ + Name {string {"Armature"}} + + Transform %transform + { + float[16] + { + {1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0} + } + } + + BoneNode $node2 + { + Name {string {"Bone"}} + + Transform %transform + { + float[16] + { + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, + 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, + 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, + 0.0, 0.0, -1.0, 1.0} + } + } + + Animation + { + Track (target = %transform) + { + Time + { + Key {float {0.0, 0.041666666666666664, 0.08333333333333333, 0.125, 0.16666666666666666, 0.20833333333333331, 0.25, 0.29166666666666663, 0.3333333333333333, 0.375, 0.41666666666666663, 0.4583333333333333, 0.5, 0.5416666666666666, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5, 1.5416666666666665, 1.5833333333333333, 1.625, 1.6666666666666665, 1.7083333333333333, 1.75, 1.7916666666666665, 1.8333333333333333, 1.875, 1.9166666666666665, 1.9583333333333333, 2.0, 2.0416666666666665, 2.083333333333333, 2.125, 2.1666666666666665, 2.208333333333333, 2.25, 2.2916666666666665, 2.333333333333333, 2.375, 2.4166666666666665, 2.458333333333333, 2.5, 2.5416666666666665, 2.583333333333333, 2.625, 2.6666666666666665, 2.708333333333333, 2.75, 2.7916666666666665, 2.833333333333333, 2.875, 2.9166666666666665, 2.958333333333333, 3.0, 3.0416666666666665, 3.083333333333333, 3.125, 3.1666666666666665, 3.208333333333333, 3.25, 3.2916666666666665, 3.333333333333333, 3.375, 3.4166666666666665, 3.458333333333333, 3.5, 3.5416666666666665, 3.583333333333333, 3.625, 3.6666666666666665, 3.708333333333333, 3.75, 3.7916666666666665, 3.833333333333333, 3.875, 3.9166666666666665, 3.958333333333333, 4.0, 4.041666666666666, 4.083333333333333, 4.125, 4.166666666666666, 4.208333333333333, 4.25, 4.291666666666666, 4.333333333333333, 4.375, 4.416666666666666, 4.458333333333333, 4.5, 4.541666666666666, 4.583333333333333, 4.625, 4.666666666666666, 4.708333333333333, 4.75, 4.791666666666666, 4.833333333333333, 4.875, 4.916666666666666, 4.958333333333333, 5.0, 5.041666666666666, 5.083333333333333, 5.125, 5.166666666666666, 5.208333333333333, 5.25, 5.291666666666666, 5.333333333333333, 5.375, 5.416666666666666, 5.458333333333333, 5.5, 5.541666666666666, 5.583333333333333, 5.625, 5.666666666666666, 5.708333333333333, 5.75, 5.791666666666666, 5.833333333333333, 5.875, 5.916666666666666, 5.958333333333333, 6.0, 6.041666666666666, 6.083333333333333, 6.125, 6.166666666666666, 6.208333333333333, 6.25, 6.291666666666666, 6.333333333333333, 6.375, 6.416666666666666, 6.458333333333333, 6.5, 6.541666666666666, 6.583333333333333, 6.625, 6.666666666666666, 6.708333333333333, 6.75, 6.791666666666666, 6.833333333333333, 6.875, 6.916666666666666, 6.958333333333333, 7.0, 7.041666666666666, 7.083333333333333, 7.125, 7.166666666666666, 7.208333333333333, 7.25, 7.291666666666666, 7.333333333333333, 7.375, 7.416666666666666, 7.458333333333333, 7.5, 7.541666666666666, 7.583333333333333, 7.625, 7.666666666666666, 7.708333333333333, 7.75, 7.791666666666666, 7.833333333333333, 7.875, 7.916666666666666, 7.958333333333333, 8.0, 8.041666666666666, 8.083333333333332, 8.125, 8.166666666666666, 8.208333333333332, 8.25, 8.291666666666666, 8.333333333333332, 8.375, 8.416666666666666, 8.458333333333332, 8.5, 8.541666666666666, 8.583333333333332, 8.625, 8.666666666666666, 8.708333333333332, 8.75, 8.791666666666666, 8.833333333333332, 8.875, 8.916666666666666, 8.958333333333332, 9.0, 9.041666666666666, 9.083333333333332, 9.125, 9.166666666666666, 9.208333333333332, 9.25, 9.291666666666666, 9.333333333333332, 9.375, 9.416666666666666, 9.458333333333332, 9.5, 9.541666666666666, 9.583333333333332, 9.625, 9.666666666666666, 9.708333333333332, 9.75, 9.791666666666666, 9.833333333333332, 9.875, 9.916666666666666, 9.958333333333332, 10.0, 10.041666666666666, 10.083333333333332, 10.125, 10.166666666666666, 10.208333333333332, 10.25, 10.291666666666666, 10.333333333333332, 10.416666666666666}} + } + + Value + { + Key + { + float[16] + { + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -1.7763568394002505e-15, -0.9340413808822632, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -5.329070518200751e-15, -0.6646065711975098, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -1.0658141036401503e-14, -0.3219858407974243, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -7.105427357601002e-15, 0.03573417663574219, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -2.1316282072803006e-14, 0.4143662452697754, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -2.842170943040401e-14, 0.783106803894043, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, -4.263256414560601e-14, 1.107043743133545, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, 0.0, 1.336852788925171, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, 0.0, 1.4077997207641602, 1.0}, + {0.9968345165252686, 0.004770307336002588, -0.07936043292284012, 0.0, 0.07932798564434052, 0.0066454727202653885, 0.9968264102935791, 0.0, 0.005282556638121605, -0.999966561794281, 0.006246061529964209, 0.0, 0.0, -1.5018031263025478e-10, 1.193772792816162, 1.0}, + {0.9586331844329834, 0.014647734351456165, -0.2842673063278198, 0.0, 0.2838432490825653, 0.02568591758608818, 0.958526611328125, 0.0, 0.021341906860470772, -0.999562680721283, 0.020465753972530365, 0.0, 0.0, -5.793054924652097e-10, 0.6453161239624023, 1.0}, + {0.8506482243537903, 0.021145351231098175, -0.5253098607063293, 0.0, 0.5237787961959839, 0.05203593522310257, 0.8502635359764099, 0.0, 0.045314110815525055, -0.998421311378479, 0.0331888347864151, 0.0, 0.0, -1.820744444103184e-09, -0.03725719451904297, 1.0}, + {0.6941250562667847, 0.020735321566462517, -0.7195556163787842, 0.0, 0.7164199948310852, 0.07762672752141953, 0.6933372616767883, 0.0, 0.07023332267999649, -0.9967668652534485, 0.03902750834822655, 0.0, 0.0, 1.1254535081661743e-09, -0.6890351176261902, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0}, + {0.60616135597229, 0.018376996740698814, -0.7951292991638184, 0.0, 0.7910918593406677, 0.0892796441912651, 0.6051468849182129, 0.0, 0.08210964500904083, -0.9958370327949524, 0.03958002105355263, 0.0, 0.0, 0.0, -1.0, 1.0} + } + } + } + } + } + + BoneNode $node3 + { + Name {string {"Bone.001"}} + + Transform %transform + { + float[16] + { + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, + 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, + 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, + -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0} + } + } + + Animation + { + Track (target = %transform) + { + Time + { + Key {float {0.0, 0.041666666666666664, 0.08333333333333333, 0.125, 0.16666666666666666, 0.20833333333333331, 0.25, 0.29166666666666663, 0.3333333333333333, 0.375, 0.41666666666666663, 0.4583333333333333, 0.5, 0.5416666666666666, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5, 1.5416666666666665, 1.5833333333333333, 1.625, 1.6666666666666665, 1.7083333333333333, 1.75, 1.7916666666666665, 1.8333333333333333, 1.875, 1.9166666666666665, 1.9583333333333333, 2.0, 2.0416666666666665, 2.083333333333333, 2.125, 2.1666666666666665, 2.208333333333333, 2.25, 2.2916666666666665, 2.333333333333333, 2.375, 2.4166666666666665, 2.458333333333333, 2.5, 2.5416666666666665, 2.583333333333333, 2.625, 2.6666666666666665, 2.708333333333333, 2.75, 2.7916666666666665, 2.833333333333333, 2.875, 2.9166666666666665, 2.958333333333333, 3.0, 3.0416666666666665, 3.083333333333333, 3.125, 3.1666666666666665, 3.208333333333333, 3.25, 3.2916666666666665, 3.333333333333333, 3.375, 3.4166666666666665, 3.458333333333333, 3.5, 3.5416666666666665, 3.583333333333333, 3.625, 3.6666666666666665, 3.708333333333333, 3.75, 3.7916666666666665, 3.833333333333333, 3.875, 3.9166666666666665, 3.958333333333333, 4.0, 4.041666666666666, 4.083333333333333, 4.125, 4.166666666666666, 4.208333333333333, 4.25, 4.291666666666666, 4.333333333333333, 4.375, 4.416666666666666, 4.458333333333333, 4.5, 4.541666666666666, 4.583333333333333, 4.625, 4.666666666666666, 4.708333333333333, 4.75, 4.791666666666666, 4.833333333333333, 4.875, 4.916666666666666, 4.958333333333333, 5.0, 5.041666666666666, 5.083333333333333, 5.125, 5.166666666666666, 5.208333333333333, 5.25, 5.291666666666666, 5.333333333333333, 5.375, 5.416666666666666, 5.458333333333333, 5.5, 5.541666666666666, 5.583333333333333, 5.625, 5.666666666666666, 5.708333333333333, 5.75, 5.791666666666666, 5.833333333333333, 5.875, 5.916666666666666, 5.958333333333333, 6.0, 6.041666666666666, 6.083333333333333, 6.125, 6.166666666666666, 6.208333333333333, 6.25, 6.291666666666666, 6.333333333333333, 6.375, 6.416666666666666, 6.458333333333333, 6.5, 6.541666666666666, 6.583333333333333, 6.625, 6.666666666666666, 6.708333333333333, 6.75, 6.791666666666666, 6.833333333333333, 6.875, 6.916666666666666, 6.958333333333333, 7.0, 7.041666666666666, 7.083333333333333, 7.125, 7.166666666666666, 7.208333333333333, 7.25, 7.291666666666666, 7.333333333333333, 7.375, 7.416666666666666, 7.458333333333333, 7.5, 7.541666666666666, 7.583333333333333, 7.625, 7.666666666666666, 7.708333333333333, 7.75, 7.791666666666666, 7.833333333333333, 7.875, 7.916666666666666, 7.958333333333333, 8.0, 8.041666666666666, 8.083333333333332, 8.125, 8.166666666666666, 8.208333333333332, 8.25, 8.291666666666666, 8.333333333333332, 8.375, 8.416666666666666, 8.458333333333332, 8.5, 8.541666666666666, 8.583333333333332, 8.625, 8.666666666666666, 8.708333333333332, 8.75, 8.791666666666666, 8.833333333333332, 8.875, 8.916666666666666, 8.958333333333332, 9.0, 9.041666666666666, 9.083333333333332, 9.125, 9.166666666666666, 9.208333333333332, 9.25, 9.291666666666666, 9.333333333333332, 9.375, 9.416666666666666, 9.458333333333332, 9.5, 9.541666666666666, 9.583333333333332, 9.625, 9.666666666666666, 9.708333333333332, 9.75, 9.791666666666666, 9.833333333333332, 9.875, 9.916666666666666, 9.958333333333332, 10.0, 10.041666666666666, 10.083333333333332, 10.125, 10.166666666666666, 10.208333333333332, 10.25, 10.291666666666666, 10.333333333333332, 10.416666666666666}} + } + + Value + { + Key + { + float[16] + { + {0.99998539686203, -0.005406782031059265, -1.390114690025257e-10, 0.0, 0.005406782031059265, 0.99998539686203, -5.684341886080802e-14, 0.0, 1.3900973427904972e-10, -6.963318810448982e-13, 1.0, 0.0, 0.0, 2.0, 0.0, 1.0}, + {0.9996087551116943, -0.02796982228755951, -7.536060664392608e-10, 0.0, 0.02796982228755951, 0.9996087551116943, -1.9895196601282805e-12, 0.0, 7.533667578663028e-10, -1.9092283309873892e-11, 1.0, 0.0, 0.0, 2.0, -7.105427357601002e-15, 1.0}, + {0.998104453086853, -0.06154263764619827, -1.7958701192810622e-09, 0.0, 0.06154263764619827, 0.998104453086853, -1.3848477919964353e-11, 0.0, 1.7933182716589613e-09, -9.670486633694964e-11, 1.0, 0.0, 0.0, 2.0, 0.0, 1.0}, + {0.9950809478759766, -0.09906430542469025, -3.277446314342569e-09, 0.0, 0.09906430542469025, 0.9950809478759766, -5.496758603840135e-11, 0.0, 3.2667701876931687e-09, -2.6998492330676527e-10, 1.0, 0.0, 0.0, 2.0, 1.1546319456101628e-14, 1.0}, + {0.9903477430343628, -0.1386050283908844, -5.431212812823105e-09, 0.0, 0.1386050283908844, 0.9903477430343628, -1.6623857845843304e-10, 0.0, 5.4018305384317955e-09, -5.881588549527805e-10, 1.0, 0.0, 0.0, 2.0, -1.4210854715202004e-14, 1.0}, + {0.9839622378349304, -0.1783764809370041, -8.292688313815688e-09, 0.0, 0.1783764809370041, 0.9839622378349304, -3.922409064216481e-10, 0.0, 8.229660508618508e-09, -1.0932694749499205e-09, 1.0, 0.0, 0.0, 2.0, 3.552713678800501e-15, 1.0}, + {0.9762129187583923, -0.21681402623653412, -1.2188721143502335e-08, 0.0, 0.21681402623653412, 0.9762129187583923, -8.111058491522272e-10, 0.0, 1.207464617181131e-08, -1.8508714560994122e-09, 1.0, 0.0, 0.0, 2.0, 0.0, 1.0}, + {0.9676145911216736, -0.2524321675300598, -1.801474169838002e-08, 0.0, 0.2524321675300598, 0.9676145911216736, -1.5917152040856308e-09, 0.0, 1.783312697511974e-08, -3.0073294965404784e-09, 1.0, 0.0, 0.0, 2.0, -1.4210854715202004e-14, 1.0}, + {0.9592233300209045, -0.28264933824539185, -2.764549833500496e-08, 0.0, 0.28264933824539185, 0.9592233300209045, -3.078554300373071e-09, 0.0, 2.7388358248003897e-08, -4.86095785845464e-09, 1.0, 0.0, 0.0, 2.0, 0.0, 1.0}, + {0.950993537902832, -0.3092105984687805, -0.0003345899749547243, 0.0, 0.3092101812362671, 0.9509932398796082, -0.0008838314097374678, 0.0, 0.0005914823850616813, 0.0007370596285909414, 0.9999995827674866, 0.0, -1.0026269592344761e-08, 2.0, 2.3283064365386963e-10, 1.0}, + {0.9428225159645081, -0.3332933187484741, -0.0011517913080751896, 0.0, 0.333288311958313, 0.9428197741508484, -0.0031636878848075867, 0.0, 0.0021403636783361435, 0.002598921302706003, 0.9999943375587463, 0.0, -4.3248292058706284e-08, 2.0, 4.6566128730773926e-09, 1.0}, + {0.9348952174186707, -0.3549171984195709, -0.002113759983330965, 0.0, 0.35489967465400696, 0.9348850250244141, -0.006020858883857727, 0.0, 0.0041130222380161285, 0.004878699779510498, 0.999979555606842, 0.0, 9.313225746154785e-10, 2.0, 2.444721758365631e-09, 1.0}, + {0.9280364513397217, -0.372477263212204, -0.0029847286641597748, 0.0, 0.37244024872779846, 0.9280146956443787, -0.00876521598547697, 0.0, 0.006034722551703453, 0.007022816687822342, 0.9999570846557617, 0.0, 8.381903171539307e-09, 2.0, 1.862645149230957e-09, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0}, + {0.9249670505523682, -0.38003239035606384, -0.00338633731007576, 0.0, 0.3799836337566376, 0.9249383211135864, -0.01007908396422863, 0.0, 0.006962524726986885, 0.008036062121391296, 0.9999434947967529, 0.0, -9.66247171163559e-08, 2.000000238418579, 0.0, 1.0} + } + } + } + } + } + + BoneNode $node4 + { + Name {string {"Bone.002"}} + + Transform %transform + { + float[16] + { + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, + 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, + 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, + -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0} + } + } + + Animation + { + Track (target = %transform) + { + Time + { + Key {float {0.0, 0.041666666666666664, 0.08333333333333333, 0.125, 0.16666666666666666, 0.20833333333333331, 0.25, 0.29166666666666663, 0.3333333333333333, 0.375, 0.41666666666666663, 0.4583333333333333, 0.5, 0.5416666666666666, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5, 1.5416666666666665, 1.5833333333333333, 1.625, 1.6666666666666665, 1.7083333333333333, 1.75, 1.7916666666666665, 1.8333333333333333, 1.875, 1.9166666666666665, 1.9583333333333333, 2.0, 2.0416666666666665, 2.083333333333333, 2.125, 2.1666666666666665, 2.208333333333333, 2.25, 2.2916666666666665, 2.333333333333333, 2.375, 2.4166666666666665, 2.458333333333333, 2.5, 2.5416666666666665, 2.583333333333333, 2.625, 2.6666666666666665, 2.708333333333333, 2.75, 2.7916666666666665, 2.833333333333333, 2.875, 2.9166666666666665, 2.958333333333333, 3.0, 3.0416666666666665, 3.083333333333333, 3.125, 3.1666666666666665, 3.208333333333333, 3.25, 3.2916666666666665, 3.333333333333333, 3.375, 3.4166666666666665, 3.458333333333333, 3.5, 3.5416666666666665, 3.583333333333333, 3.625, 3.6666666666666665, 3.708333333333333, 3.75, 3.7916666666666665, 3.833333333333333, 3.875, 3.9166666666666665, 3.958333333333333, 4.0, 4.041666666666666, 4.083333333333333, 4.125, 4.166666666666666, 4.208333333333333, 4.25, 4.291666666666666, 4.333333333333333, 4.375, 4.416666666666666, 4.458333333333333, 4.5, 4.541666666666666, 4.583333333333333, 4.625, 4.666666666666666, 4.708333333333333, 4.75, 4.791666666666666, 4.833333333333333, 4.875, 4.916666666666666, 4.958333333333333, 5.0, 5.041666666666666, 5.083333333333333, 5.125, 5.166666666666666, 5.208333333333333, 5.25, 5.291666666666666, 5.333333333333333, 5.375, 5.416666666666666, 5.458333333333333, 5.5, 5.541666666666666, 5.583333333333333, 5.625, 5.666666666666666, 5.708333333333333, 5.75, 5.791666666666666, 5.833333333333333, 5.875, 5.916666666666666, 5.958333333333333, 6.0, 6.041666666666666, 6.083333333333333, 6.125, 6.166666666666666, 6.208333333333333, 6.25, 6.291666666666666, 6.333333333333333, 6.375, 6.416666666666666, 6.458333333333333, 6.5, 6.541666666666666, 6.583333333333333, 6.625, 6.666666666666666, 6.708333333333333, 6.75, 6.791666666666666, 6.833333333333333, 6.875, 6.916666666666666, 6.958333333333333, 7.0, 7.041666666666666, 7.083333333333333, 7.125, 7.166666666666666, 7.208333333333333, 7.25, 7.291666666666666, 7.333333333333333, 7.375, 7.416666666666666, 7.458333333333333, 7.5, 7.541666666666666, 7.583333333333333, 7.625, 7.666666666666666, 7.708333333333333, 7.75, 7.791666666666666, 7.833333333333333, 7.875, 7.916666666666666, 7.958333333333333, 8.0, 8.041666666666666, 8.083333333333332, 8.125, 8.166666666666666, 8.208333333333332, 8.25, 8.291666666666666, 8.333333333333332, 8.375, 8.416666666666666, 8.458333333333332, 8.5, 8.541666666666666, 8.583333333333332, 8.625, 8.666666666666666, 8.708333333333332, 8.75, 8.791666666666666, 8.833333333333332, 8.875, 8.916666666666666, 8.958333333333332, 9.0, 9.041666666666666, 9.083333333333332, 9.125, 9.166666666666666, 9.208333333333332, 9.25, 9.291666666666666, 9.333333333333332, 9.375, 9.416666666666666, 9.458333333333332, 9.5, 9.541666666666666, 9.583333333333332, 9.625, 9.666666666666666, 9.708333333333332, 9.75, 9.791666666666666, 9.833333333333332, 9.875, 9.916666666666666, 9.958333333333332, 10.0, 10.041666666666666, 10.083333333333332, 10.125, 10.166666666666666, 10.208333333333332, 10.25, 10.291666666666666, 10.333333333333332, 10.416666666666666}} + } + + Value + { + Key + { + float[16] + { + {0.9998303651809692, -0.018419725820422173, -8.603757123637479e-06, 0.0, 0.01841968111693859, 0.9998287558555603, -0.0017633307725191116, 0.0, 4.108235953026451e-05, 0.0017628733767196536, 0.9999984502792358, 0.0, -1.5265566588595902e-16, 2.0, -3.1594735508400085e-15, 1.0}, + {0.99556964635849, -0.09402582794427872, 0.0002559016866143793, 0.0, 0.09402431547641754, 0.9955291152000427, -0.009012938477098942, 0.0, 0.0005926914745941758, 0.008997070603072643, 0.9999593496322632, 0.0, -7.771561172376096e-16, 2.0, -6.3178628995075314e-15, 1.0}, + {0.9817260503768921, -0.19029591977596283, 0.001218294259160757, 0.0, 0.19028609991073608, 0.9815584421157837, -0.018280792981386185, 0.0, 0.002282932633534074, 0.018178554251790047, 0.9998321533203125, 0.0, 1.4901159417490817e-08, 1.9999998807907104, 2.4022450695326825e-14, 1.0}, + {0.957146942615509, -0.28958943486213684, 0.0027998839505016804, 0.0, 0.2895524501800537, 0.9567543268203735, -0.027937568724155426, 0.0, 0.005411623045802116, 0.027551067993044853, 0.9996057748794556, 0.0, -2.581268532253489e-15, 1.9999996423721313, -1.1823875212257917e-14, 1.0}, + {0.9201236367225647, -0.39159780740737915, 0.0048621357418596745, 0.0, 0.3914887011051178, 0.9193943738937378, -0.0380869060754776, 0.0, 0.010444524697959423, 0.03694813326001167, 0.9992625713348389, 0.0, -3.3306690738754696e-15, 1.9999996423721313, -5.662137425588298e-15, 1.0}, + {0.8738107681274414, -0.48621493577957153, 0.007058457005769014, 0.0, 0.4859645962715149, 0.8726657032966614, -0.04788554832339287, 0.0, 0.017122996971011162, 0.0452730692923069, 0.9988277554512024, 0.0, -2.980232594040899e-08, 2.0, 2.90878432451791e-14, 1.0}, + {0.8255133628845215, -0.5643212199211121, 0.008321394212543964, 0.0, 0.5638235807418823, 0.8239501118659973, -0.05665008723735809, 0.0, 0.025112425908446312, 0.05145720764994621, 0.9983594417572021, 0.0, -4.107825191113079e-15, 2.000000238418579, 4.39648317751562e-14, 1.0}, + {0.7873581647872925, -0.6164620518684387, 0.006453604903072119, 0.0, 0.6155420541763306, 0.7855148911476135, -0.06383142620325089, 0.0, 0.03428024426102638, 0.05423066392540932, 0.9979398250579834, 0.0, -2.980232594040899e-08, 1.999999761581421, 3.8191672047105385e-14, 1.0}, + {0.7748236656188965, -0.6321731805801392, -0.0023209843784570694, 0.0, 0.6305439472198486, 0.7730801701545715, -0.06900372356176376, 0.0, 0.045416608452796936, 0.05200223624706268, 0.9976137280464172, 0.0, -5.960464477539063e-08, 2.0, 1.7763568394002505e-14, 1.0}, + {0.8074691891670227, -0.5886243581771851, -0.03892109543085098, 0.0, 0.5863680243492126, 0.808091402053833, -0.05621962621808052, 0.0, 0.06454404443502426, 0.022573530673980713, 0.99765944480896, 0.0, 6.487971404567361e-08, 1.9999991655349731, 2.3283064365386963e-09, 1.0}, + {0.8808358907699585, -0.4640212655067444, -0.09387394785881042, 0.0, 0.46567919850349426, 0.8849409818649292, -0.004735782742500305, 0.0, 0.08527040481567383, -0.03954368457198143, 0.9955728054046631, 0.0, 3.054155968129635e-07, 1.9999998807907104, -3.725290298461914e-09, 1.0}, + {0.9460473656654358, -0.2901986837387085, -0.14414870738983154, 0.0, 0.30241769552230835, 0.950512170791626, 0.07120470702648163, 0.0, 0.11635158210992813, -0.11095614731311798, 0.9869906306266785, 0.0, -4.976755008101463e-08, 2.0, -9.313225746154785e-09, 1.0}, + {0.9779366850852966, -0.11382757872343063, -0.17516571283340454, 0.0, 0.14079923927783966, 0.9785844683647156, 0.15015996992588043, 0.0, 0.15432210266590118, -0.17151014506816864, 0.9730204939842224, 0.0, 7.636845111846924e-08, 2.0, -4.377216100692749e-08, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0}, + {0.9825077652931213, -0.029007740318775177, -0.1839495450258255, 0.0, 0.06423753499984741, 0.9799563884735107, 0.1885710209608078, 0.0, 0.17479248344898224, -0.19708889722824097, 0.9646778702735901, 0.0, -5.9138983488082886e-08, 2.0, 1.862645149230957e-09, 1.0} + } + } + } + } + } + + BoneNode $node5 + { + Name {string {"Bone.003"}} + + Transform %transform + { + float[16] + { + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, + -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, + 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, + 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0} + } + } + + Animation + { + Track (target = %transform) + { + Time + { + Key {float {0.0, 0.041666666666666664, 0.08333333333333333, 0.125, 0.16666666666666666, 0.20833333333333331, 0.25, 0.29166666666666663, 0.3333333333333333, 0.375, 0.41666666666666663, 0.4583333333333333, 0.5, 0.5416666666666666, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5, 1.5416666666666665, 1.5833333333333333, 1.625, 1.6666666666666665, 1.7083333333333333, 1.75, 1.7916666666666665, 1.8333333333333333, 1.875, 1.9166666666666665, 1.9583333333333333, 2.0, 2.0416666666666665, 2.083333333333333, 2.125, 2.1666666666666665, 2.208333333333333, 2.25, 2.2916666666666665, 2.333333333333333, 2.375, 2.4166666666666665, 2.458333333333333, 2.5, 2.5416666666666665, 2.583333333333333, 2.625, 2.6666666666666665, 2.708333333333333, 2.75, 2.7916666666666665, 2.833333333333333, 2.875, 2.9166666666666665, 2.958333333333333, 3.0, 3.0416666666666665, 3.083333333333333, 3.125, 3.1666666666666665, 3.208333333333333, 3.25, 3.2916666666666665, 3.333333333333333, 3.375, 3.4166666666666665, 3.458333333333333, 3.5, 3.5416666666666665, 3.583333333333333, 3.625, 3.6666666666666665, 3.708333333333333, 3.75, 3.7916666666666665, 3.833333333333333, 3.875, 3.9166666666666665, 3.958333333333333, 4.0, 4.041666666666666, 4.083333333333333, 4.125, 4.166666666666666, 4.208333333333333, 4.25, 4.291666666666666, 4.333333333333333, 4.375, 4.416666666666666, 4.458333333333333, 4.5, 4.541666666666666, 4.583333333333333, 4.625, 4.666666666666666, 4.708333333333333, 4.75, 4.791666666666666, 4.833333333333333, 4.875, 4.916666666666666, 4.958333333333333, 5.0, 5.041666666666666, 5.083333333333333, 5.125, 5.166666666666666, 5.208333333333333, 5.25, 5.291666666666666, 5.333333333333333, 5.375, 5.416666666666666, 5.458333333333333, 5.5, 5.541666666666666, 5.583333333333333, 5.625, 5.666666666666666, 5.708333333333333, 5.75, 5.791666666666666, 5.833333333333333, 5.875, 5.916666666666666, 5.958333333333333, 6.0, 6.041666666666666, 6.083333333333333, 6.125, 6.166666666666666, 6.208333333333333, 6.25, 6.291666666666666, 6.333333333333333, 6.375, 6.416666666666666, 6.458333333333333, 6.5, 6.541666666666666, 6.583333333333333, 6.625, 6.666666666666666, 6.708333333333333, 6.75, 6.791666666666666, 6.833333333333333, 6.875, 6.916666666666666, 6.958333333333333, 7.0, 7.041666666666666, 7.083333333333333, 7.125, 7.166666666666666, 7.208333333333333, 7.25, 7.291666666666666, 7.333333333333333, 7.375, 7.416666666666666, 7.458333333333333, 7.5, 7.541666666666666, 7.583333333333333, 7.625, 7.666666666666666, 7.708333333333333, 7.75, 7.791666666666666, 7.833333333333333, 7.875, 7.916666666666666, 7.958333333333333, 8.0, 8.041666666666666, 8.083333333333332, 8.125, 8.166666666666666, 8.208333333333332, 8.25, 8.291666666666666, 8.333333333333332, 8.375, 8.416666666666666, 8.458333333333332, 8.5, 8.541666666666666, 8.583333333333332, 8.625, 8.666666666666666, 8.708333333333332, 8.75, 8.791666666666666, 8.833333333333332, 8.875, 8.916666666666666, 8.958333333333332, 9.0, 9.041666666666666, 9.083333333333332, 9.125, 9.166666666666666, 9.208333333333332, 9.25, 9.291666666666666, 9.333333333333332, 9.375, 9.416666666666666, 9.458333333333332, 9.5, 9.541666666666666, 9.583333333333332, 9.625, 9.666666666666666, 9.708333333333332, 9.75, 9.791666666666666, 9.833333333333332, 9.875, 9.916666666666666, 9.958333333333332, 10.0, 10.041666666666666, 10.083333333333332, 10.125, 10.166666666666666, 10.208333333333332, 10.25, 10.291666666666666, 10.333333333333332, 10.416666666666666}} + } + + Value + { + Key + { + float[16] + { + {0.9998535513877869, -0.0171112809330225, -0.0003685634001158178, 0.0, 0.017110655084252357, 0.999852180480957, -0.0016415215795859694, 0.0, 0.0003965974901802838, 0.00163497484754771, 0.9999985694885254, 0.0, 7.985168082313976e-09, 1.9999998807907104, 1.4172201190376654e-09, 1.0}, + {0.99617999792099, -0.08730863034725189, -0.0016472802963107824, 0.0, 0.08729174733161926, 0.9961469769477844, -0.008450078777968884, 0.0, 0.002378697507083416, 0.00827400479465723, 0.9999628663063049, 0.0, -5.346146281226538e-08, 2.000000238418579, 1.076841726899147e-09, 1.0}, + {0.9842608571052551, -0.17669367790222168, -0.003115090075880289, 0.0, 0.17661485075950623, 0.984127402305603, -0.017335984855890274, 0.0, 0.006128805223852396, 0.01651296392083168, 0.9998448491096497, 0.0, 3.9919541450217366e-08, 2.000000238418579, -1.6298145055770874e-09, 1.0}, + {0.9631130695343018, -0.2690659165382385, -0.004057837650179863, 0.0, 0.2688665986061096, 0.9628039598464966, -0.026811201125383377, 0.0, 0.011120885610580444, 0.02473120391368866, 0.9996322989463806, 0.0, 4.3197360355407e-07, 1.9999985694885254, -9.313225746154785e-10, 1.0}, + {0.9312379956245422, -0.36438873410224915, -0.004076903685927391, 0.0, 0.3640033006668091, 0.9306660890579224, -0.03690888732671738, 0.0, 0.017243413254618645, 0.032886963337659836, 0.9993102550506592, 0.0, 1.2869713827967644e-07, 2.0, 1.4901161193847656e-08, 1.0}, + {0.8912753462791443, -0.4534505009651184, -0.0032811351120471954, 0.0, 0.45282161235809326, 0.8903771042823792, -0.04670386016368866, 0.0, 0.024099336937069893, 0.04014022275805473, 0.9989033341407776, 0.0, -2.0809238776564598e-07, 1.9999998807907104, 2.2351741790771484e-08, 1.0}, + {0.8494575023651123, -0.5276526212692261, -0.002196116838604212, 0.0, 0.5267446041107178, 0.8482257723808289, -0.0552581287920475, 0.0, 0.031019892543554306, 0.04578263685107231, 0.9984696507453918, 0.0, 8.325441740453243e-07, 1.9999996423721313, 2.9802322387695312e-08, 1.0}, + {0.8163166642189026, -0.5776014924049377, -0.0018760396633297205, 0.0, 0.5764156579971313, 0.8148403763771057, -0.06148165091872215, 0.0, 0.03704055771231651, 0.04910712316632271, 0.9981062412261963, 0.0, -6.396439857780933e-07, 1.9999998807907104, 6.705522537231445e-08, 1.0}, + {0.8055055141448975, -0.5925763249397278, -0.003763732500374317, 0.0, 0.5911692380905151, 0.8039997220039368, -0.06406132876873016, 0.0, 0.040987275540828705, 0.04937676712870598, 0.9979390501976013, 0.0, 3.447930794209242e-07, 2.000000476837158, 0.0, 1.0}, + {0.8542895317077637, -0.5196048021316528, -0.014153274707496166, 0.0, 0.5183572173118591, 0.8536322116851807, -0.051167406141757965, 0.0, 0.03866852447390556, 0.03637533634901047, 0.9985898733139038, 0.0, 3.762543201446533e-07, 2.0000007152557373, 2.0489096641540527e-08, 1.0}, + {0.9508073925971985, -0.3083057403564453, -0.030209437012672424, 0.0, 0.30806994438171387, 0.9512842297554016, -0.012287444435060024, 0.0, 0.03252605348825455, 0.0023763813078403473, 0.9994679689407349, 0.0, -5.103647708892822e-07, 1.9999998807907104, 4.470348358154297e-08, 1.0}, + {0.9992246627807617, -0.016185127198696136, -0.03589220345020294, 0.0, 0.017647428438067436, 0.999011218547821, 0.04080595448613167, 0.0, 0.03519627824425697, -0.04140771925449371, 0.9985222816467285, 0.0, 3.427267074584961e-07, 1.9999995231628418, 0.0, 1.0}, + {0.9651547074317932, 0.26034310460090637, -0.02642226219177246, 0.0, -0.25707417726516724, 0.9621812701225281, 0.0901108905673027, 0.0, 0.04888272285461426, -0.08017844706773758, 0.995581328868866, 0.0, 2.384185791015625e-07, 2.0000007152557373, 3.725290298461914e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0}, + {0.9240012168884277, 0.38199254870414734, -0.01741916313767433, 0.0, -0.3778752088546753, 0.9191241264343262, 0.11145023256540298, 0.0, 0.05858350172638893, -0.09639788419008255, 0.9936173558235168, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -5.960464477539063e-08, 1.0} + } + } + } + } + } + } + + BoneNode $node6 + { + Name {string {"Bone.004"}} + + Transform %transform + { + float[16] + { + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, + 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, + 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, + 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0} + } + } + + Animation + { + Track (target = %transform) + { + Time + { + Key {float {0.0, 0.041666666666666664, 0.08333333333333333, 0.125, 0.16666666666666666, 0.20833333333333331, 0.25, 0.29166666666666663, 0.3333333333333333, 0.375, 0.41666666666666663, 0.4583333333333333, 0.5, 0.5416666666666666, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5, 1.5416666666666665, 1.5833333333333333, 1.625, 1.6666666666666665, 1.7083333333333333, 1.75, 1.7916666666666665, 1.8333333333333333, 1.875, 1.9166666666666665, 1.9583333333333333, 2.0, 2.0416666666666665, 2.083333333333333, 2.125, 2.1666666666666665, 2.208333333333333, 2.25, 2.2916666666666665, 2.333333333333333, 2.375, 2.4166666666666665, 2.458333333333333, 2.5, 2.5416666666666665, 2.583333333333333, 2.625, 2.6666666666666665, 2.708333333333333, 2.75, 2.7916666666666665, 2.833333333333333, 2.875, 2.9166666666666665, 2.958333333333333, 3.0, 3.0416666666666665, 3.083333333333333, 3.125, 3.1666666666666665, 3.208333333333333, 3.25, 3.2916666666666665, 3.333333333333333, 3.375, 3.4166666666666665, 3.458333333333333, 3.5, 3.5416666666666665, 3.583333333333333, 3.625, 3.6666666666666665, 3.708333333333333, 3.75, 3.7916666666666665, 3.833333333333333, 3.875, 3.9166666666666665, 3.958333333333333, 4.0, 4.041666666666666, 4.083333333333333, 4.125, 4.166666666666666, 4.208333333333333, 4.25, 4.291666666666666, 4.333333333333333, 4.375, 4.416666666666666, 4.458333333333333, 4.5, 4.541666666666666, 4.583333333333333, 4.625, 4.666666666666666, 4.708333333333333, 4.75, 4.791666666666666, 4.833333333333333, 4.875, 4.916666666666666, 4.958333333333333, 5.0, 5.041666666666666, 5.083333333333333, 5.125, 5.166666666666666, 5.208333333333333, 5.25, 5.291666666666666, 5.333333333333333, 5.375, 5.416666666666666, 5.458333333333333, 5.5, 5.541666666666666, 5.583333333333333, 5.625, 5.666666666666666, 5.708333333333333, 5.75, 5.791666666666666, 5.833333333333333, 5.875, 5.916666666666666, 5.958333333333333, 6.0, 6.041666666666666, 6.083333333333333, 6.125, 6.166666666666666, 6.208333333333333, 6.25, 6.291666666666666, 6.333333333333333, 6.375, 6.416666666666666, 6.458333333333333, 6.5, 6.541666666666666, 6.583333333333333, 6.625, 6.666666666666666, 6.708333333333333, 6.75, 6.791666666666666, 6.833333333333333, 6.875, 6.916666666666666, 6.958333333333333, 7.0, 7.041666666666666, 7.083333333333333, 7.125, 7.166666666666666, 7.208333333333333, 7.25, 7.291666666666666, 7.333333333333333, 7.375, 7.416666666666666, 7.458333333333333, 7.5, 7.541666666666666, 7.583333333333333, 7.625, 7.666666666666666, 7.708333333333333, 7.75, 7.791666666666666, 7.833333333333333, 7.875, 7.916666666666666, 7.958333333333333, 8.0, 8.041666666666666, 8.083333333333332, 8.125, 8.166666666666666, 8.208333333333332, 8.25, 8.291666666666666, 8.333333333333332, 8.375, 8.416666666666666, 8.458333333333332, 8.5, 8.541666666666666, 8.583333333333332, 8.625, 8.666666666666666, 8.708333333333332, 8.75, 8.791666666666666, 8.833333333333332, 8.875, 8.916666666666666, 8.958333333333332, 9.0, 9.041666666666666, 9.083333333333332, 9.125, 9.166666666666666, 9.208333333333332, 9.25, 9.291666666666666, 9.333333333333332, 9.375, 9.416666666666666, 9.458333333333332, 9.5, 9.541666666666666, 9.583333333333332, 9.625, 9.666666666666666, 9.708333333333332, 9.75, 9.791666666666666, 9.833333333333332, 9.875, 9.916666666666666, 9.958333333333332, 10.0, 10.041666666666666, 10.083333333333332, 10.125, 10.166666666666666, 10.208333333333332, 10.25, 10.291666666666666, 10.333333333333332, 10.416666666666666}} + } + + Value + { + Key + { + float[16] + { + {1.0, -2.1269785932531704e-09, 3.019822543137707e-07, 0.0, 3.0198953027138487e-07, 1.1932138477277476e-07, -0.9999999403953552, 0.0, 2.6497204430597776e-10, 1.0, 1.1948907285841415e-07, 0.0, 4.259881336565741e-09, 1.9999998807907104, 9.51331458054483e-10, 1.0}, + {1.0, -7.0238002081168815e-09, 3.0183582566678524e-07, 0.0, 3.01864929497242e-07, 1.201988197863102e-07, -1.0, 0.0, -4.310095391701907e-09, 1.0, 1.201988197863102e-07, 0.0, -5.346055331756361e-08, 2.000000238418579, 4.802132025361061e-09, 1.0}, + {1.0, -1.5019395505078137e-08, 3.022141754627228e-07, 0.0, 3.016320988535881e-07, 1.198495738208294e-07, -1.0, 0.0, 5.387846613302827e-09, 1.000000238418579, 1.2130476534366608e-07, 0.0, 3.9919541450217366e-08, 2.000000238418579, -1.6298145055770874e-09, 1.0}, + {0.9999999403953552, -3.0144292395561934e-08, 3.0244700610637665e-07, 0.0, 3.033783286809921e-07, 1.19674950838089e-07, -0.9999999403953552, 0.0, 8.098140824586153e-09, 0.9999999403953552, 1.1920928955078125e-07, 0.0, 3.7232530303299427e-07, 1.9999985694885254, -1.6763806343078613e-08, 1.0}, + {1.0, -5.296897143125534e-09, 3.012828528881073e-07, 0.0, 3.03611159324646e-07, 1.2200325727462769e-07, -0.9999999403953552, 0.0, -2.380693331360817e-08, 1.0, 1.2014061212539673e-07, 0.0, 1.286680344492197e-07, 2.0, 7.450580596923828e-09, 1.0}, + {1.0, 3.245077095925808e-08, 3.0174851417541504e-07, 0.0, 3.022141754627228e-07, 1.1920928955078125e-07, -0.9999999403953552, 0.0, 1.6938429325819016e-08, 0.9999998807907104, 1.1175870895385742e-07, 0.0, -2.0826701074838638e-07, 1.9999998807907104, 0.0, 1.0}, + {1.0, -1.501757651567459e-08, 3.026798367500305e-07, 0.0, 3.0081719160079956e-07, 1.1175870895385742e-07, -1.0, 0.0, 1.1350493878126144e-09, 1.0000001192092896, 1.1734664440155029e-07, 0.0, 8.325441740453243e-07, 1.9999996423721313, 2.9802322387695312e-08, 1.0}, + {0.9999999403953552, -3.777677193284035e-08, 2.9569491744041443e-07, 0.0, 3.045424818992615e-07, 1.1920928955078125e-07, -0.9999998807907104, 0.0, 9.633367881178856e-09, 0.9999998807907104, 1.210719347000122e-07, 0.0, -6.399350240826607e-07, 1.9999998807907104, 2.2351741790771484e-08, 1.0}, + {1.0, 5.326000973582268e-09, 2.9848888516426086e-07, 0.0, 2.919696271419525e-07, 1.1175870895385742e-07, -1.000000238418579, 0.0, 2.278829924762249e-08, 1.0, 1.0617077350616455e-07, 0.0, 3.448221832513809e-07, 2.000000476837158, -1.4901161193847656e-08, 1.0}, + {1.0, 4.6566128730773926e-09, 3.003515303134918e-07, 0.0, 3.0151568353176117e-07, 1.1618249118328094e-07, -1.000000238418579, 0.0, -1.30385160446167e-08, 1.000000238418579, 1.1955853551626205e-07, 0.0, 3.7671998143196106e-07, 2.0000007152557373, 5.587935447692871e-09, 1.0}, + {0.9999999403953552, -6.28642737865448e-09, 2.980232238769531e-07, 0.0, 3.0919909477233887e-07, 1.3224780559539795e-07, -1.0, 0.0, -3.818422555923462e-08, 0.9999999403953552, 1.2479722499847412e-07, 0.0, -5.103647708892822e-07, 1.9999998807907104, 4.470348358154297e-08, 1.0}, + {1.0, -3.527384251356125e-08, 3.026798367500305e-07, 0.0, 2.989545464515686e-07, 1.2200325727462769e-07, -0.9999999403953552, 0.0, 6.542541086673737e-08, 0.9999999403953552, 1.2014061212539673e-07, 0.0, 3.427267074584961e-07, 1.9999995231628418, 0.0, 1.0}, + {0.9999999403953552, 9.313225746154785e-10, 2.9848888516426086e-07, 0.0, 3.059394657611847e-07, 1.1548399925231934e-07, -1.0, 0.0, 4.6566128730773926e-09, 0.9999999403953552, 1.2479722499847412e-07, 0.0, 2.3469328880310059e-07, 2.0000007152557373, 5.21540641784668e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0}, + {1.0, 3.725290298461914e-09, 2.942979335784912e-07, 0.0, 2.952292561531067e-07, 1.2293457984924316e-07, -1.0, 0.0, 2.3283064365386963e-08, 1.0, 1.2293457984924316e-07, 0.0, 1.2293457984924316e-07, 2.0000007152557373, -4.470348358154297e-08, 1.0} + } + } + } + } + } + } + } + } + } + + GeometryNode $node7 + { + Name {string {"Cube.001"}} + ObjectRef {ref {$geometry1}} + MaterialRef (index = 0) {ref {$material1}} + + Transform + { + float[16] + { + {1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0} + } + } + } +} + +GeometryNode $node8 +{ + Name {string {"Cube"}} + ObjectRef {ref {$geometry2}} + MaterialRef (index = 0) {ref {$material2}} + + Transform + { + float[16] + { + {1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0} + } + } +} + +LightNode $node9 +{ + Name {string {"Lamp"}} + ObjectRef {ref {$light1}} + + Transform + { + float[16] + { + {-0.29086464643478394, 0.9551711678504944, -0.05518905818462372, 0.0, + -0.7711008191108704, -0.1998833566904068, 0.6045247316360474, 0.0, + 0.5663931965827942, 0.21839119493961334, 0.7946722507476807, 0.0, + 4.076245307922363, 1.0054539442062378, 5.903861999511719, 1.0} + } + } +} + +CameraNode $node10 +{ + Name {string {"Camera"}} + ObjectRef {ref {$camera1}} + + Transform + { + float[16] + { + {0.6858805418014526, 0.7276337742805481, -0.010816780850291252, 0.0, + -0.31737011671066284, 0.31246861815452576, 0.8953432440757751, 0.0, + 0.6548618674278259, -0.6106656193733215, 0.4452453553676605, 0.0, + 7.481131553649902, -6.5076398849487305, 5.34366512298584, 1.0} + } + } +} + +GeometryObject $geometry2 // Cube +{ + Mesh (primitive = "triangles") + { + VertexArray (attrib = "position") + { + float[3] // 24 + { + {1.0, 0.9999999403953552, -1.0}, {1.0, -1.0, -1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {-0.9999999403953552, 1.0, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, + {1.0, 0.9999999403953552, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, {1.0, -1.0, -1.0}, {1.0, -1.0, -1.0}, {0.9999993443489075, -1.0000005960464478, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, + {-1.0000001192092896, -0.9999998211860657, -1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-0.9999999403953552, 1.0, 1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {1.0, 0.9999999403953552, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {-0.9999999403953552, 1.0, 1.0} + } + } + + VertexArray (attrib = "normal") + { + float[3] // 24 + { + {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, + {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {1.0, -2.8312206268310547e-07, 4.470341252726939e-08}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, + {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07} + } + } + + IndexArray + { + unsigned_int32[3] // 12 + { + {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23} + } + } + } +} + +GeometryObject $geometry1 // Cube.001 +{ + Mesh (primitive = "triangles") + { + VertexArray (attrib = "position") + { + float[3] // 80 + { + {1.0, 0.9999999403953552, -1.0}, {1.0, -1.0, -1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {-0.9999999403953552, 1.0, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-1.0000003576278687, -0.9999996423721313, 3.0}, {-0.9999999403953552, 1.0, 3.0}, + {1.0, 0.9999999403953552, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {0.9999994039535522, -1.0000005960464478, 1.0}, {1.0, -1.0, -1.0}, {1.0, -1.0, -1.0}, {0.9999994039535522, -1.0000005960464478, 1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-1.0000001192092896, -0.9999998211860657, -1.0}, + {-1.0000001192092896, -0.9999998211860657, -1.0}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {-0.9999999403953552, 1.0, 1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {1.0, 0.9999999403953552, -1.0}, {-0.9999996423721313, 1.0000003576278687, -1.0}, {-0.9999999403953552, 1.0, 1.0}, + {-0.9545343518257141, -0.9545336365699768, 4.598935604095459}, {-0.9545339345932007, 0.9545340538024902, 4.598935604095459}, {-1.0000003576278687, -0.9999996423721313, 1.0}, {0.9999994039535522, -1.0000005960464478, 1.0}, {0.9999994039535522, -1.0000005960464478, 3.0}, {-1.0000003576278687, -0.9999996423721313, 3.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {-0.9999999403953552, 1.0, 1.0}, + {-0.9999999403953552, 1.0, 3.0}, {1.0000004768371582, 0.999999463558197, 3.0}, {0.9999994039535522, -1.0000005960464478, 1.0}, {1.0000004768371582, 0.999999463558197, 1.0}, {1.0000004768371582, 0.999999463558197, 3.0}, {0.9999994039535522, -1.0000005960464478, 3.0}, {-0.9025039672851562, 0.9025040864944458, 6.0}, {-0.9025043845176697, -0.9025037288665771, 6.0}, + {-0.8504744172096252, -0.8504738211631775, 7.0}, {-0.8504740595817566, 0.8504741191864014, 7.0}, {0.9545332789421082, -0.954534649848938, 4.598935604095459}, {-0.9545343518257141, -0.9545336365699768, 4.598935604095459}, {-0.9545339345932007, 0.9545340538024902, 4.598935604095459}, {0.9545344710350037, 0.9545335173606873, 4.598935604095459}, {0.9545344710350037, 0.9545335173606873, 4.598935604095459}, {0.9545332789421082, -0.954534649848938, 4.598935604095459}, + {0.8504745960235596, 0.8504736423492432, 7.0}, {-0.8504740595817566, 0.8504741191864014, 7.0}, {-0.8504744172096252, -0.8504738211631775, 7.0}, {0.8504735231399536, -0.8504747152328491, 7.0}, {-0.9025043845176697, -0.9025037288665771, 6.0}, {0.9025034308433533, -0.9025047421455383, 6.0}, {0.8504735231399536, -0.8504747152328491, 7.0}, {-0.8504744172096252, -0.8504738211631775, 7.0}, + {0.9025045037269592, 0.9025035500526428, 6.0}, {-0.9025039672851562, 0.9025040864944458, 6.0}, {-0.8504740595817566, 0.8504741191864014, 7.0}, {0.8504745960235596, 0.8504736423492432, 7.0}, {0.9025034308433533, -0.9025047421455383, 6.0}, {0.9025045037269592, 0.9025035500526428, 6.0}, {0.8504745960235596, 0.8504736423492432, 7.0}, {0.8504735231399536, -0.8504747152328491, 7.0}, + {-0.9025039672851562, 0.9025040864944458, 6.0}, {0.9025045037269592, 0.9025035500526428, 6.0}, {0.9025050401687622, 2.9289722442626953, 6.009448051452637}, {-0.9025034308433533, 2.9289727210998535, 6.009448051452637}, {0.9545350074768066, 2.925309658050537, 4.607422351837158}, {-0.9545332789421082, 2.9253101348876953, 4.607422351837158}, {-0.9025034308433533, 2.9289727210998535, 6.009448051452637}, {0.9025050401687622, 2.9289722442626953, 6.009448051452637}, + {-0.9025034308433533, 2.9289727210998535, 6.009448051452637}, {-0.9545332789421082, 2.9253101348876953, 4.607422351837158}, {0.9545344710350037, 0.9545335173606873, 4.598935604095459}, {-0.9545339345932007, 0.9545340538024902, 4.598935604095459}, {-0.9545332789421082, 2.9253101348876953, 4.607422351837158}, {0.9545350074768066, 2.925309658050537, 4.607422351837158}, {0.9545350074768066, 2.925309658050537, 4.607422351837158}, {0.9025050401687622, 2.9289722442626953, 6.009448051452637} + } + } + + VertexArray (attrib = "normal") + { + float[3] // 80 + { + {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {0.0, 0.0, -1.0}, {-0.999969482421875, 0.0, 0.0}, {-1.0, 0.0, 0.0}, {-0.9998779296875, 0.0, 0.014069032855331898}, {-0.9998779296875, 0.0, 0.014069032855331898}, + {1.0, -2.682209014892578e-07, 2.9802265544276452e-08}, {1.0, -2.682209014892578e-07, 2.9802265544276452e-08}, {1.0, -2.682209014892578e-07, 2.9802265544276452e-08}, {1.0, -2.682209014892578e-07, 2.9802265544276452e-08}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, {-2.8312206268310547e-07, -1.0, -1.0430819230577981e-07}, + {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {-1.0, 2.2351744632942427e-07, -1.341104365337742e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, {2.384185791015625e-07, 1.0, 2.086162567138672e-07}, + {-0.99945068359375, 0.0, 0.03265480697154999}, {-0.9993896484375, -3.0518509447574615e-05, 0.03415021300315857}, {0.0, -1.0, 0.0}, {0.0, -0.999969482421875, 0.0}, {0.0, -0.9998779296875, 0.014069032855331898}, {0.0, -0.9998779296875, 0.014069032855331898}, {0.0, 1.0, 0.0}, {0.0, 1.0, 0.0}, + {0.0, 0.9998779296875, 0.014069032855331898}, {0.0, 0.9998779296875, 0.014069032855331898}, {1.0, 0.0, 0.0}, {0.999969482421875, 0.0, 0.0}, {0.9998779296875, 0.0, 0.014069032855331898}, {0.9998779296875, 0.0, 0.014069032855331898}, {-0.999114990234375, -3.0518509447574615e-05, 0.04193243384361267}, {-0.9989928603172302, 0.0, 0.04431287571787834}, + {-0.9986266493797302, 0.0, 0.051942504942417145}, {-0.9986266493797302, 0.0, 0.051942504942417145}, {0.0, -0.99945068359375, 0.03265480697154999}, {0.0, -0.99945068359375, 0.03265480697154999}, {0.0, 0.99957275390625, 0.02841273322701454}, {0.0, 0.99957275390625, 0.02841273322701454}, {0.9993896484375, -3.0518509447574615e-05, 0.03415021300315857}, {0.99945068359375, 0.0, 0.03265480697154999}, + {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.0, 1.0}, {0.0, -0.9989928603172302, 0.04431287571787834}, {0.0, -0.9989928603172302, 0.04431287571787834}, {0.0, -0.9986266493797302, 0.051942504942417145}, {0.0, -0.9986266493797302, 0.051942504942417145}, + {2.886259267143032e-07, 0.9986491203308105, 0.051959652453660965}, {2.886259267143032e-07, 0.9986491203308105, 0.051959652453660965}, {2.886259267143032e-07, 0.9986491203308105, 0.051959652453660965}, {2.886259267143032e-07, 0.9986491203308105, 0.051959652453660965}, {0.9989928603172302, 0.0, 0.04431287571787834}, {0.999114990234375, -3.0518509447574615e-05, 0.04193243384361267}, {0.9986266493797302, 0.0, 0.051942504942417145}, {0.9986266493797302, 0.0, 0.051942504942417145}, + {-1.2730523302195706e-09, -0.0046622720547020435, 0.9999891519546509}, {-1.2730523302195706e-09, -0.0046622720547020435, 0.9999891519546509}, {-1.2730523302195706e-09, -0.0046622720547020435, 0.9999891519546509}, {-1.2730523302195706e-09, -0.0046622720547020435, 0.9999891519546509}, {2.567408614595479e-07, 0.9999966025352478, -0.002612344454973936}, {2.567408614595479e-07, 0.9999966025352478, -0.002612344454973936}, {2.567408614595479e-07, 0.9999966025352478, -0.002612344454973936}, {2.567408614595479e-07, 0.9999966025352478, -0.002612344454973936}, + {-0.999298095703125, -0.00015259254723787308, 0.03707998991012573}, {-0.999298095703125, -0.00015259254723787308, 0.03707998991012573}, {1.2376770719413344e-09, 0.004306257236748934, -0.999990701675415}, {1.2376770719413344e-09, 0.004306257236748934, -0.999990701675415}, {1.2376770719413344e-09, 0.004306257236748934, -0.999990701675415}, {1.2376770719413344e-09, 0.004306257236748934, -0.999990701675415}, {0.999298095703125, -0.00015259254723787308, 0.03707998991012573}, {0.999298095703125, -0.00015259254723787308, 0.03707998991012573} + } + } + + VertexArray (attrib = "color") + { + float[3] // 80 + { + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, + {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, 1.0, 1.0} + } + } + + VertexArray (attrib = "texcoord") + { + float[2] // 80 + { + {0.853708028793335, 0.1462918519973755}, {0.853708028793335, 0.00016813237743917853}, {0.9998317956924438, 0.00016813237743917853}, {0.9998317956924438, 0.1462918221950531}, {0.41687875986099243, 0.15038259327411652}, {0.5629438161849976, 0.14623311161994934}, {0.5670932531356812, 0.29229798913002014}, {0.42102837562561035, 0.29644766449928284}, + {0.1580430120229721, 0.005586784332990646}, {0.15262427926063538, 0.1516100913286209}, {0.0066010053269565105, 0.14619146287441254}, {0.012019664980471134, 0.00016813237743917853}, {0.7135531306266785, 0.00016813237743917853}, {0.7135541439056396, 0.14629174768924713}, {0.5674304962158203, 0.1462927609682083}, {0.5674294829368591, 0.00016910122940316796}, + {0.5587943196296692, 0.00016813237743917853}, {0.5629438161849976, 0.14623311161994934}, {0.41687875986099243, 0.15038259327411652}, {0.412729412317276, 0.004317543003708124}, {0.853708028793335, 0.2924155592918396}, {0.853708028793335, 0.1462918519973755}, {0.9998317956924438, 0.1462918221950531}, {0.9998319149017334, 0.2924154996871948}, + {0.5670915842056274, 0.4092135429382324}, {0.4276678264141083, 0.41317465901374817}, {0.5674304962158203, 0.1462927609682083}, {0.7135541439056396, 0.14629174768924713}, {0.7135551571846008, 0.2924153804779053}, {0.5674314498901367, 0.29241642355918884}, {0.853708028793335, 0.2924155592918396}, {0.9998319149017334, 0.2924154996871948}, + {0.9998319149017334, 0.43853920698165894}, {0.8537081480026245, 0.4385392665863037}, {0.0066010053269565105, 0.14619146287441254}, {0.15262427926063538, 0.1516100913286209}, {0.14720562100410461, 0.29763343930244446}, {0.0011823981767520308, 0.29221469163894653}, {0.43437695503234863, 0.5154602527618408}, {0.5662007331848145, 0.5117148756980896}, + {0.5644786357879639, 0.5849537253379822}, {0.44025471806526184, 0.5884833335876465}, {0.7102342247962952, 0.4092837870121002}, {0.5707541108131409, 0.4092848598957062}, {0.9965101480484009, 0.555407702922821}, {0.8570300936698914, 0.555407702922821}, {0.13955222070217133, 0.414298415184021}, {0.00016813237743917853, 0.40912577509880066}, + {0.7214940786361694, 0.46781307458877563}, {0.8457685708999634, 0.46781307458877563}, {0.8457684516906738, 0.5920873880386353}, {0.7214942574501038, 0.5920873880386353}, {0.5745562314987183, 0.5117197632789612}, {0.7064335942268372, 0.51171875}, {0.7026327252388, 0.5848795175552368}, {0.5783581733703613, 0.584880530834198}, + {0.7176926732063293, 0.39465245604515076}, {0.8495699167251587, 0.39465245604515076}, {0.8457685708999634, 0.46781307458877563}, {0.7214940786361694, 0.46781307458877563}, {0.00016824003250803798, 0.5116311311721802}, {0.13195458054542542, 0.5165219306945801}, {0.12544254958629608, 0.5894912481307983}, {0.0012538435403257608, 0.5848821997642517}, + {0.8495699167251587, 0.39465245604515076}, {0.7176926732063293, 0.39465245604515076}, {0.7176927328109741, 0.24659332633018494}, {0.8495699763298035, 0.24659346044063568}, {0.7138913869857788, 0.1441582441329956}, {0.8533715605735779, 0.14415842294692993}, {0.8495699763298035, 0.24659346044063568}, {0.7176927328109741, 0.24659332633018494}, + {0.28639882802963257, 0.520354688167572}, {0.2837550938129425, 0.4178834557533264}, {0.7138914465904236, 0.00016813237743917853}, {0.8533717393875122, 0.00016831178800202906}, {0.8533715605735779, 0.14415842294692993}, {0.7138913869857788, 0.1441582441329956}, {0.28341880440711975, 0.4202575087547302}, {0.2798847556114197, 0.5227020382881165} + } + } + + IndexArray + { + unsigned_int32[3] // 52 + { + {0, 1, 2}, {0, 2, 3}, {4, 5, 6}, {4, 6, 7}, {8, 9, 10}, {8, 10, 11}, {12, 13, 14}, {12, 14, 15}, {16, 17, 18}, {16, 18, 19}, {20, 21, 22}, {20, 22, 23}, {7, 6, 24}, {7, 24, 25}, {26, 27, 28}, {26, 28, 29}, + {30, 31, 32}, {30, 32, 33}, {34, 35, 36}, {34, 36, 37}, {38, 39, 40}, {38, 40, 41}, {29, 28, 42}, {29, 42, 43}, {33, 32, 44}, {33, 44, 45}, {37, 36, 46}, {37, 46, 47}, {48, 49, 50}, {48, 50, 51}, {52, 53, 54}, {52, 54, 55}, + {56, 57, 58}, {56, 58, 59}, {60, 61, 62}, {60, 62, 63}, {25, 24, 39}, {25, 39, 38}, {43, 42, 53}, {43, 53, 52}, {64, 65, 66}, {64, 66, 67}, {47, 46, 61}, {47, 61, 60}, {68, 69, 70}, {68, 70, 71}, {25, 38, 72}, {25, 72, 73}, + {74, 75, 76}, {74, 76, 77}, {61, 46, 78}, {61, 78, 79} + } + } + + Skin + { + Transform + { + float[16] + { + {1.0, 0.0, 0.0, 0.0, + 0.0, 1.0, 0.0, 0.0, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0} + } + } + + Skeleton + { + BoneRefArray + { + ref // 5 + { + $node2, $node3, $node4, $node5, $node6 + } + } + + Transform + { + float[16] // 5 + { + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, 0.0, -1.0, 1.0}, + {1.0, 0.0, 0.0, 0.0, 0.0, 7.549790126404332e-08, 1.0, 0.0, 0.0, -1.0, 1.1920928955078125e-07, 0.0, 0.0, 1.5099580252808664e-07, 1.0, 1.0}, + {1.0, 3.019916050561733e-07, -1.3200469770003817e-14, 0.0, -2.2799733224976824e-14, 7.549789415861596e-08, 1.0, 0.0, 3.019916050561733e-07, -1.0, 1.1920928244535389e-07, 0.0, 0.0, 3.019916050561733e-07, 3.0, 1.0}, + {1.0, 0.0, 0.0, 0.0, 6.778502781801978e-22, 7.549793679118011e-08, 1.0, 0.0, 0.0, -1.0, 1.192093321833454e-07, 0.0, -4.559946306182186e-14, 4.529873933734052e-07, 5.0, 1.0}, + {1.0, 0.0, -5.621950794438765e-15, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3200439276817716e-14, -4.371130302160964e-08, 1.0, 0.0, -4.559946644995365e-14, 4.529873933734052e-07, 5.0, 1.0} + } + } + } + + BoneCountArray + { + unsigned_int16 // 80 + { + 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 + } + } + + BoneIndexArray + { + unsigned_int16 // 120 + { + 0, 0, 0, 0, 1, 1, 1, 2, 1, 2, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 2, 3, 2, 3, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 2, 2, 3, 3, 2, 3, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 3, 3, 3, 3, 3, 2, 3, 2, 3, 3, 2, 3, 2, 3, 3, 3, 3, 2, 2, 3, 3, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3 + } + } + + BoneWeightArray + { + float // 120 + { + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.5, 0.49954946340473105, 0.500450536595269, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.5, 0.5, 0.5, 1.0, 1.0, + 0.5, 0.5, 0.5, 0.5, 1.0, 1.0, 0.49954946340473105, 0.500450536595269, 0.5, 0.5, 1.0, 1.0, 0.5, 0.5, 0.5, 0.5, + 0.3333333333333333, 0.6666666666666666, 0.6666666666666666, 0.3333333333333333, 1.0, 1.0, 0.49999995529651775, 0.5000000447034822, 0.5, 0.5, 0.5, 0.5, 0.4998149424625882, 0.5001850575374118, 0.4998149424625882, 0.5001850575374118, + 0.49999995529651775, 0.5000000447034822, 0.9999999999999999, 1.0, 1.0, 1.0, 0.6666666666666666, 0.3333333333333333, 0.6666667262713096, 0.3333332737286903, 1.0, 1.0, 0.3331714669815143, 0.6668285330184857, 0.3333333333333333, 0.6666666666666666, + 1.0, 0.9999999999999999, 0.6666667262713096, 0.3333332737286903, 0.3331714669815143, 0.6668285330184857, 0.9999999999999999, 1.0, 0.3333333333333333, 0.6666666666666666, 0.3331714669815143, 0.6668285330184857, 0.3331714669815143, 0.6668285330184857, 0.3333333333333333, 0.6666666666666666, + 0.49981485306664863, 0.5001851469333514, 0.5, 0.5, 0.3333333333333333, 0.6666666666666666, 0.3331714669815143, 0.6668285330184857, 0.3333333333333333, 0.6666666666666666, 0.5, 0.5, 0.4998149424625882, 0.5001850575374118, 0.5, 0.5, + 0.5, 0.5, 0.49981485306664863, 0.5001851469333514, 0.49981485306664863, 0.5001851469333514, 0.3331714669815143, 0.6668285330184857 + } + } + } + } +} + +LightObject $light1 (type = "point") // Lamp +{ + Color (attrib = "light") {float[3] {{1.0, 1.0, 1.0}}} + + Atten (curve = "inverse_square") + { + Param (attrib = "scale") {float {5.47722400800463}} + } +} + +CameraObject $camera1 // Camera +{ + Param (attrib = "fov") {float {0.8575560450553894}} + Param (attrib = "near") {float {0.10000000149011612}} + Param (attrib = "far") {float {100.0}} +} + +Material $material2 +{ + Name {string {"Material"}} + + Color (attrib = "diffuse") {float[3] {{0.6400000190734865, 0.6400000190734865, 0.6400000190734865}}} + Color (attrib = "specular") {float[3] {{0.5, 0.5, 0.5}}} + Param (attrib = "specular_power") {float {50}} +} + +Material $material1 +{ + Name {string {"Material.001"}} + + Color (attrib = "diffuse") {float[3] {{0.6399999713897699, 0.6399999713897699, 0.6399999713897699}}} + Color (attrib = "specular") {float[3] {{25.0, 25.0, 25.0}}} + Param (attrib = "specular_power") {float {50}} +}