-
Archives
- April 2023
- November 2017
- April 2017
- March 2017
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- August 2015
- May 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- June 2014
- April 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- July 2013
- June 2013
- May 2013
- April 2013
- January 2013
- December 2012
- November 2012
- October 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- October 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
-
Meta
Monthly Archives: April 2012
Research notes for Single stepping python code for in Qt-Creator for free-cad
Working through single stepping through the freecad in the qt-creator I hit some python scripts that would have been really handy to step into. I thought I through the question out to the qt-creator irc if it was possible to … Continue reading
Posted in Uncategorized
Leave a comment
Constraints issues with the polyline Arc
It seems that I’ve isolated issue that’s been causing me the pain in my question for the polyline arc. The issue that I’ve been having relates to arcs which appear to be drawn clockwise but are rendered clockwise by reversing … Continue reading
Posted in Uncategorized
Leave a comment
pressButton and releaseButton for the freeCad Polylinearc
The mousemove arcs and CW CCW seem to be working out ok. Now comes the fun stuff: To see if I can get the Arc to actually draw out properly as a real freecad object in the pressButton and releaseButton … Continue reading
Posted in Uncategorized
Leave a comment
Working out ccw cw on the polyline-arc for freecad
So… I’m going to need how to figure out whether or not I need to go cw or ccw when drawing a polyline arc. So what I need to know if the point “B” is basically about the Tangent line … Continue reading
Posted in Uncategorized
Leave a comment
Continuing on working on my mouse moves in DrawSketchHandlerLineSet
Ok… So I thinking I’m approaching a point where the rubber hits the road…. Or not… So… What I’m attempting to do is to add an arc to the polyline mode. I came up with a sketch … Continue reading
Posted in Uncategorized
Leave a comment
DrawSketchHandlerLineSet walk through
I’ve been trying to get the silly arc going without really understanding how the whole line thing draws out so I thought it be good for me to work it out. The polyline code migrates back and forth through mousemoves, … Continue reading
Posted in Uncategorized
Leave a comment
Working on the registerPressedKey for freecad polyline
Ok… So I thought I had the registerPressedKey function working, but for some reason I’m generating a segmentation fault which I don’t understand at the moment ;( So… I need to retrace my steps to see where things when south. … Continue reading
Posted in Uncategorized
Leave a comment
Poking around drawedit.
I’m been poking around the code, and things have been more or less making sense to me until I ran into this draw edit thing… void ViewProviderSketch::drawEdit(const std::vector<Base::Vector2D> &EditCurve) { assert(edit); edit->EditCurveSet->numVertices.setNum(1); edit->EditCurvesCoordinate->point.setNum(EditCurve.size()); SbVec3f *verts = edit->EditCurvesCoordinate->point.startEditing(); int32_t *index = … Continue reading
Posted in Uncategorized
Leave a comment