Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #141 from DeepSOIC/ReverseXZPlane
Browse files Browse the repository at this point in the history
PartDesign: reverse XZ plane to match legacy orientations
  • Loading branch information
wwmayer committed Apr 19, 2016
2 parents 58d22f3 + 6b5554f commit bfaa879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/Origin.cpp
Expand Up @@ -140,7 +140,7 @@ void Origin::setupObject () {
{App::Line::getClassTypeId(), "Y_Axis", Base::Rotation ( Base::Vector3d (1,1,1), M_PI*2/3 ) },
{App::Line::getClassTypeId(), "Z_Axis", Base::Rotation ( Base::Vector3d (1,1,1), M_PI*4/3 ) },
{App::Plane::getClassTypeId (), "XY_Plane", Base::Rotation () },
{App::Plane::getClassTypeId (), "XZ_Plane", Base::Rotation ( Base::Vector3d (0,1,1), M_PI ), },
{App::Plane::getClassTypeId (), "XZ_Plane", Base::Rotation ( 1.0, 0.0, 0.0, 1.0 ), },
{App::Plane::getClassTypeId (), "YZ_Plane", Base::Rotation ( Base::Vector3d (1,1,1), M_PI*2/3 ) },
};

Expand Down

0 comments on commit bfaa879

Please sign in to comment.