diff options
author | colin <colin@cicadas.surf> | 2024-12-14 08:36:23 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-12-14 08:36:23 -0800 |
commit | 3a2217263d581be9a7f629b10d75aa8e3d581890 (patch) | |
tree | 23f5f0a5449a06473aba2ec7914a3c2193823a10 /src/region.lisp | |
parent | 03cdbb6a15e130a012377ab8d54074b6864e3480 (diff) | |
parent | 8a51ba81c7df6b0b6dab7cf4b35b5ca084b653ba (diff) |
Merge branch 'refactor-with-def'
Diffstat (limited to 'src/region.lisp')
-rw-r--r-- | src/region.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/region.lisp b/src/region.lisp index 4f22763..4b86aeb 100644 --- a/src/region.lisp +++ b/src/region.lisp @@ -2,8 +2,8 @@ (in-package :wheelwork) -(defclass/std region () - ((left bottom top right :with :std 0))) +(def:class region () + (left bottom top right :prefix :initform 0)) (defmethod width ((region region)) (- (region-right region) (region-left region))) |