[cells-cvs] CVS cells/gui-geometry
fgoenninger
fgoenninger at common-lisp.net
Sun Dec 2 18:14:19 UTC 2007
Update of /project/cells/cvsroot/cells/gui-geometry
In directory clnet:/tmp/cvs-serv13766
Modified Files:
geo-data-structures.lisp
Log Message:
Added: Comments in code. No other change.
--- /project/cells/cvsroot/cells/gui-geometry/geo-data-structures.lisp 2007/11/30 16:51:19 1.10
+++ /project/cells/cvsroot/cells/gui-geometry/geo-data-structures.lisp 2007/12/02 18:14:18 1.11
@@ -21,13 +21,10 @@
;-----------------------------
(defstruct v2
- (h 0 )
- (v 0 )
+ (h 0 ) ;; horizontal coordinate
+ (v 0 ) ;; vertical coordinate
)
-#+(or)
-(instance-slots (mkv2 1 2))
-
(defmethod print-object ((self v2) s)
(format s "~a|~a" (v2-h self)(v2-v self)))
More information about the Cells-cvs
mailing list