0
I Use This!
Activity Not Available

Commits : Listings

Analyzed almost 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/message.py: Add a mute(), unmute(), and isMuted() methods to the Messenger class; only send messages if the object is not muted. More... over 22 years ago
Generic/dimension.py: Convert DimCrossarc class to the messaging system; adjust setXXX() methods to send messages. More... over 22 years ago
Generic/entity.py: Fix Entity.clone() method. Why did pychecker miss this so often? Hmmm ... More... over 22 years ago
Generic/dimension.py: Convert DimBar class to a message sending class; adjust set-type methods to send messages when changes occur; white-space cleanup More... over 22 years ago
Generic/dimension.py: Convert the DimString class to the new messaging format by making this class a subclass of Entity; simplfy the angle tests in the AngularDimension.onDimension() method. More... over 22 years ago
Generic/text.py: Fix setColor() and setStyle() methods in TextFormat class; add in isLocked() tests for the setXXX() methods; remove stray whitespace. More... over 22 years ago
Generic/text.py: Convert the TextFormat class to the messaging class structure by making it an Entity subclass; use fmod() in place of modf(). More... over 22 years ago
Interface/Gtk/gtkdimension.py: Replace deprecated mapPoint() calls with mapCoords(); use the layer.find() method in place of hasPoint() and hasPointAt() methods More... over 22 years ago
Generic/dimension.py: Call math functions with a 'math.' prefix; create common variables for degrees/radians conversion. More... over 22 years ago
Generic/layer.py: Add a separate loop for arcs when calculating the layer boundary - use the arc.getBounds() method to find the arc boundary instead of treating it like a circle. More... over 22 years ago
www/status.html: Wording changes. www/download.html: Add in a link to the Subversion website and a blurb about keeping subversion up to date. More... over 22 years ago
Interface/Gtk/gtkimage.py: Add in a temporary check for the new GraphicObject class 'new_GraphicObject'; replace the deprecated getLeaderPoints() call with getPoints(). More... over 22 years ago
Generic/maptree.py: Replace '_Point' with 'Point'. More... over 22 years ago
Generic/mirror.py: Use the new layer.find() method. More... over 22 years ago
Generic/intersections.py: Replace '_Point' with 'Point' and '_Segment' with 'Segment'. More... over 22 years ago
Generic/move.py: Utilize the layer.find() method; add in explicit testing for Arc entities now that they are now subclasses of Circles. More... over 22 years ago
Generic/segjoint.py: Lose a few parenthesis in return statements. More... over 22 years ago
Generic/layer.py: Massive changes in entity storage - use quadtrees for points, circles, segments, arcs, hclines, vclines, aclines, clines, ccircles, leaders, and polylines; convert the various methods that used the old trees to the equivalent quadtree calls; add a new find() method used to find any type of entity in the layer; remove some doc strings for deprecated or removed methods. More... over 22 years ago
Generic/quadtree.py: Only split the tree once when handling the node splitting message; remove the clear() method as it does not disconnect from the objects in the tree; add some disconnect() calls in the delObjects() method. More... over 22 years ago
Generic/ccircle.py: Massive changes to the CCircle class - the conversion to the new ConstructionObject messaging class; CCircle objects are not derived from Circle objects; most methods have been adjusted for the new messaging design; CCircles can be stored in CCircle Quadtrees. More... over 22 years ago
Generic/polyline.py: Massive changes to the Polyline class - the conversion to the new GraphicObject messaging design; most methods have been adjusted to the messaging design; the old _Polyline class is not used; Polylines can be stored in PolylineQuadtrees. More... over 22 years ago
Generic/leader.py: Massive changes to the Leader class - the conversion the new GraphicObject messaging class; most methods have been adjusted for the new messaging design; the old _Leader class is not used; Leader objects can be stored in LeaderQuadtrees. More... over 22 years ago
Generic/cline.py: Massive changes to the CLine class - the class has been converted to the new ConstructionObject messaging class; most methods have been adjusted to the messaging design; CLine objects can be stored in CLineQuadtrees. More... over 22 years ago
Generic/acline.py: Massive changes to the ACLine class - the class is converted to the new ConstructionObject messaging class; most methods have be adjusted to the new messaging design; the old spcline class is not used; ACLine objects can be stored in ACLineQuadtrees. More... over 22 years ago
Generic/vcline.py: Massive changes to the VCLine class - the class is now based on the new ConstructionObject messaging class; most methods adjusted for the new messaging design; the old spcline class is not used; VCLines can be stored in VCLineQuadtrees. More... over 22 years ago
Generic/hcline.py: Massive changes to the HCLine class - now based on the new ConstructionObject messaging class; most methods adjusted to messaging behaviour; the old spcline class is no longer used; HCLine objects can be stored in an HCLineQuadtree. More... over 22 years ago
Generic/conobject.py: The base class for construction objects is now ConstructionObject; this new class is a messaging-based class derived from the new GraphicObject class. More... over 22 years ago
Generic/graphicobject.py: The graphicObject() base class will be replaced with a new_GraphicObject() base class that is derived from the Subpart class - this new class will have messaging abilities; the methods of the new_GraphicObject class are adjusted for messaging. More... over 22 years ago
Generic/arc.py: Massive rework of the Arc class - converted to the new messaging system; the Arc class is no longer derived from the Circle class; most methods reworked to handle the new messaging system; various methods cleaned up and simplified; Arc can be stored in an ArcQuadtree. More... over 22 years ago
Generic/circle.py: Massive changes to Circle class - converted to the new messaging system; the old _Circle class is not used; most methods adjusted to the new messaging system; Circles are now stored in CircleQuadtrees. More... over 22 years ago