0
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 2 years ago. based on code collected over 4 years ago.
Jan 17, 2021 — Jan 17, 2022
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Generic/transfer.py: Replace deprecated getLeaderPoints() calls with getPoints(); make a few cleanups that this change allows. More... over 22 years ago
Generic/layer.py: Fix transfer of polylines between layers - don't forget to change the quadtree variables when copying and pasting ... More... over 22 years ago
Generic/layer.py: When deleting a polyline get the points used in the polyline - a bit too much was deleted when converting to the quadtree storage ... More... over 22 years ago
Generic/transfer.py: Replace all hasPoint()/hasPointAt() calls with find; add various test for Arc class now that it isn't derived from Circle; removed some commented out code. More... over 22 years ago
Generic/layer.py: Replace a hasPoint() call with find(); remove some of the pre-quadtree commented out code. More... over 22 years ago
Generic/text.py: Add in a sendsMessages() method to the TextBlock class. More... over 22 years ago
Generic/image.py: Add a sendsMessage() method and a currently empty messages dictionary to the Image class. More... over 22 years ago
Generic/layer.py: Add a few messages to the Layer class; use these messages when changing the name or scale; add a sendsMessage() method; slightly rework the testing of the layer name in __init__(). More... over 22 years ago
Generic/split.py: Replace hasPointAt() calls with find(). More... over 22 years ago
Generic/segment.py: Add mute()/unmute() calls in move() method; reorder some variable testing lines in the inRegion() method. Generic/circle.py: Add mute()/unmute() calls in move() method. Generic/arc.py: Add mute()/unmute() calls in move() method. Generic/hcline.py: Add mute()/unmute() calls in move() method. Generic/vcline.py: Add mute()/unmute() calls in move() method. Generic/acline.py: Add mute()/unmute() calls in move() method. Generic/cline.py: Add mute()/unmute() calls in move() method. Generic/ccircle.py: Add mute()/unmute() calls in move() method. Generic/leader.py: Add mute()/unmute() calls in move() method. Generic/polyline.py: Add mute()/unmute() calls in move() method. More... over 22 years ago
Interface/Gtk/gtktext.py: Fix Python DeprecationWarning about float/int values in draw_rectangle(). More... over 22 years ago
Generic/text.py: Fix messed-up TextBlock message dictionary - oops. More... over 22 years ago
Generic/layer.py: Remove some commented out code used prior to the introduction of quadtree storage. More... over 22 years ago
Generic/text.py: Convert the TextBlock class to the messaging system; change various methods to send appropriate messages; fix a potential bug in setLocation() by testing that the location is not None before splitting the coordinates into x/y values. More... over 22 years ago
Generic/ellipse.py: Convert Ellipse to the messaging system: adjust various methods to send messages. More... over 22 years ago
Generic/entity.py: Change return statement in isVisible(); return an empty list instead of None if entity has no children. More... over 22 years ago
Generic/layer.py: Test if layer is locked before adding or deleting an entity; remove some code used before the quadtrees were added. More... over 22 years ago
Generic/segjoint.py: Convert SegJoint/Chamfer/Fillet to messaging system; adjust various methods as needed; update code to fix various calculation bugs and code standard shortcomings. More... over 22 years ago
Generic/layer.py: Fix typo in find() bit for angular dimensions. More... over 22 years ago
Generic/entity.py: Add a children list so parent entities can store a reference to their children; always send 'locked' and 'unlocked' messages; rename the 'show' message to 'exposed'; add an addChild() and delChild() method. More... over 22 years ago
www/index.html: Add link to DragonFly BSD. More... over 22 years ago
www/status.html: Add missing <p> and </p> tags to the "bad stuff" paragraph. More... over 22 years ago
Generic/image.py: Derive the Image class from the Entity class; replace all hasPoint() calls with find() calls; use the extend() method on layer lists when scanning the layers in an image; rewrite some code to conform to code standards; remove stray whitespace. More... over 22 years ago
Generic/intersections.py: Replace '_Circle' usage with 'Circle'. Construction circle stuff still needs added in light of recent changes ... More... over 22 years ago
Generic/layer.py: In layer.mapPoint() Use correct x/y coordinates when calling mapCoords() on dimension entities and replace self.hasPoint() call with self.find() More... over 22 years ago
Generic/tools.py: Replace all hasPointAt() calls with find() calls. More... over 22 years ago
Interface/Gtk/gtkentities.py: Remove stray debugging statement. More... over 22 years ago
Generic/layer.py: Add in more types in the find() method; deprecate the hasPoint(), hasPointAt(), and hasCircleAt() methods - the are replaced by the find() method. I thought they had been deprecated earlier ... More... over 22 years ago
Interface/Gtk/gtkentities.py: Rework the chamfer and fillet button press handlers - replace calls to deprecated methods; update calls to handle weak references; correct the calculation for the 'y' position in the point. How could this have worked correctly with this calculation using the 'x' values??? More... over 22 years ago
Generic/point.py: Rework the PointQuadtree.find() method slightly by testing the node bounds and using a 'continue' statement - this change removes a level of indentation from the code; add the missing 'self' argument to quadtree.Quadtree.delObject() in movePoint(). More... over 22 years ago