Some fixes for doygen syntax errors and some configuration to make it run smoother under Windows

This commit is contained in:
hgutsche
2017-02-27 10:29:05 -05:00
committed by wmayer
parent e3ea61d165
commit 201c9d89b0
30 changed files with 103 additions and 97 deletions

View File

@@ -184,10 +184,10 @@ void Box::Restore(Base::XMLReader &reader)
else if (location_axis) {
Base::Vector3d d = Axis.getValue();
Base::Vector3d p = Location.getValue();
Base::Rotation rot(Base::Vector3d(0.0,0.0,1.0),
Base::Vector3d(d.x,d.y,d.z));
plm.setRotation(rot);
plm.setPosition(Base::Vector3d(p.x,p.y,p.z));
Base::Rotation rot(Base::Vector3d(0.0,0.0,1.0),
Base::Vector3d(d.x,d.y,d.z));
plm.setRotation(rot);
plm.setPosition(Base::Vector3d(p.x,p.y,p.z));
this->Placement.setValue(this->Placement.getValue() * plm);
this->Shape.setStatus(App::Property::User1, true); // override the shape's location later on
}