- 24 Mar, 2012 1 commit
-
-
Whitham D. Reeve II authored
-
- 05 Mar, 2012 1 commit
-
-
Whitham D. Reeve II authored
PyCam has been spending about 75% of it's time creating point objects. I decided to replace the pycam Point object with a 3 position tuple, and the pycam Vector object with a 4 position tuple. All of the point object methods were rewritten to accept and emit tuples. The transform_by_matrix method was rewritten to accept both 3 and 4 position tuples with behavior dependent on that size. The normalized method is the only method required to emit the same kind of object that it is called on, and this has been taken care of with the tuple version. What does this mean? All instances of Point(x,y,z) have been converted into (x,y,z) All instances of Vector(x,y,z) have been converted into (x,y,z,'v') The notation to access the x,y,z of the Point objects has been been changed from p.x,p.y,p.z to p[0],p[1],p[2] The notation for the point math functions has been completely changed. Instead of p1.sub(p2) it has been converted to psub(p1,p2) Instead of p1.sub(p2).mul(0.5) it has been converted to pmul(psub(p1,p2), 0.5) It is very important to point out that the tuple is an immutable type. You can not change it once you create it. t[0] = calculated_x_value # syntax error You have to replace the reference (t) to the old tuple with a new reference to a new tuple. t = (calculated_x_value, t[1], t[2]) # works There was a particularly hairy mutable/immutable barrier in the next() generator present in each class that inherits TransformableContainer. The TransformableContainer.transform_by_matrix function uses these generators to collapse polygons and lines and triangles into points where a shift is performed on each. Now that point is immutable, you can not change the value emitted by the generator. Geometry/__init__.py transform_by_marix and the associated next() generator in each sub class has been rewritten to transfer the attr used to store the reference to the tuple. Geometry/__init__.py transform_by_matrix now sets these attributes which effectively gets around this limitation. There could be some old point object code in any of the files not contained in this commit. It is impossible to know without running the code path and/or careful analysis of each file. Some list comprehensions that convert a list of point objects into a 3 position tuple have been removed. Whitham D. Reeve II
-
- 21 Jan, 2012 2 commits
-
-
Paul Bonser authored
-
sumpfralle authored
enabled "CTRL-w" as an accelerator for "close window" git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1260 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 09 Jan, 2012 1 commit
-
-
sumpfralle authored
added another OpenGL setting ("use caching") - this should solve the problem reported by a Windows user: * http://sourceforge.net/tracker/index.php?func=detail&aid=3465407&group_id=237831&atid=1104176 git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1226 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 04 Dec, 2011 3 commits
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1215 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1214 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
allow color to be specified when adding a model git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1211 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 26 Sep, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1205 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 23 Aug, 2011 2 commits
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1200 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1199 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 17 Aug, 2011 1 commit
-
-
sumpfralle authored
aded drop-down list of visible items and the context menu for 3D view cleanup of main UI file git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1195 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 11 Aug, 2011 2 commits
-
-
sumpfralle authored
moved the dimension visualization to a separated plugin removed dependency on "Models" plugin from OpenGLWindow git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1190 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1184 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 09 Aug, 2011 3 commits
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1176 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1175 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
proper gtk action disconnect during teardown git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1172 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 04 Aug, 2011 2 commits
-
-
sumpfralle authored
added plugin filters for easier browsing git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1161 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1160 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 30 Jul, 2011 1 commit
-
-
sumpfralle authored
added "unit_string" for human readable unit values fixed ModelExtrusion visibility fixed ModelSupport visibility added "Models" dependency to OpenGLWindow (temporarily: until the offending calls are gone) git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1141 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 26 Jul, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1134 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 25 Jul, 2011 1 commit
-
-
sumpfralle authored
fixed mangled names git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1131 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 23 Jul, 2011 1 commit
-
-
sumpfralle authored
fixe numerous "teardown" handlers git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1129 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 20 Jul, 2011 1 commit
-
-
sumpfralle authored
toolpath-grid plugin improved units plugin separated git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1127 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 18 Jul, 2011 1 commit
-
-
sumpfralle authored
fixed various small issues git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1124 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 17 Jul, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1122 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 04 Jul, 2011 2 commits
-
-
sumpfralle authored
read the model's color from the new model manager git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1108 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
sumpfralle authored
updated some model-related TODOs git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1105 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 03 Jul, 2011 1 commit
-
-
sumpfralle authored
added a basic model manager added dependency checks for plugins git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1104 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 13 Apr, 2011 1 commit
-
-
sumpfralle authored
some minor refactoring regarding support models fixed minor issue with "register_ui" being called after "register_ui_section" git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1066 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 12 Apr, 2011 1 commit
-
-
sumpfralle authored
moved data file location handling to a separate module moved most model handling functions to separate "plugins" created a basic "core" handler for settings, widgets and events git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1061 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 23 Mar, 2011 1 commit
-
-
sumpfralle authored
fixed direction of horizontal scrolling fixed some menu item captions git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1023 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 17 Mar, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1010 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 07 Feb, 2011 1 commit
-
-
sumpfralle authored
disabled "namedtuple" for now (it was never in effect) git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@975 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 03 Feb, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@958 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 23 Jan, 2011 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@938 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 21 Jan, 2011 1 commit
-
-
sumpfralle authored
added support for the scroll wheel (not tested) git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@934 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 30 Dec, 2010 1 commit
-
-
sumpfralle authored
* added a progress slider for backward/forward control * removed "modal" property to allow model view changes during simulation git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@902 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 27 Dec, 2010 1 commit
-
-
sumpfralle authored
git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@896 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-
- 26 Dec, 2010 1 commit
-
-
sumpfralle authored
added wiki link for http://sourceforge.net/apps/mediawiki/pycam/index.php?title=3D_View git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@894 bbaffbd6-741e-11dd-a85d-61de82d9cad9
-