]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/chipmunk/ffi/ffi.factor
classes.struct: moving to new/boa instead of <struct>/<struct-boa>
[factor.git] / extra / chipmunk / ffi / ffi.factor
index d4e52711dff52fc0f5800abbb0f14039bcebc03b..3a224a50ab457f735f56906b829ff395ae36ce6f 100644 (file)
@@ -36,7 +36,7 @@ CONSTANT: CP_ALL_LAYERS 0xffffffff
 
 ! cpVect.h
 TYPED: cpv ( x y -- v: cpVect )
-    cpVect <struct-boa> ; inline
+    cpVect boa ; inline
 
 TYPED: cpvzero ( -- v: cpVect )
     0.0 0.0 cpv ; inline
@@ -146,7 +146,7 @@ STRUCT: cpBB
     { t cpFloat } ;
 
 TYPED: cpBBNew ( l b r t -- cpbb: cpBB )
-    cpBB <struct-boa> ; inline
+    cpBB boa ; inline
 
 TYPED: cpBBintersects ( a: cpBB b: cpBB -- ? )
     {