gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/gzz/gfx/gl IrregularFrame.java


From: Matti Katila
Subject: [Gzz-commits] gzz/gzz/gfx/gl IrregularFrame.java
Date: Fri, 10 Jan 2003 07:44:22 -0500

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Matti Katila <address@hidden>   03/01/10 07:44:21

Modified files:
        gzz/gfx/gl     : IrregularFrame.java 

Log message:
        pp changes, added type

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/gfx/gl/IrregularFrame.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gzz/gzz/gfx/gl/IrregularFrame.java
diff -u gzz/gzz/gfx/gl/IrregularFrame.java:1.2 
gzz/gzz/gfx/gl/IrregularFrame.java:1.3
--- gzz/gzz/gfx/gl/IrregularFrame.java:1.2      Wed Nov  6 12:41:22 2002
+++ gzz/gzz/gfx/gl/IrregularFrame.java  Fri Jan 10 07:44:21 2003
@@ -67,8 +67,13 @@
        }
     }
 
+
     static public IrregularFrame create(float x0, float y0, float x1, float 
y1, 
                            float border, float ripple) {
+       return create(x0,y0,x1,y1,border,ripple,0);
+    }
+    static public IrregularFrame create(float x0, float y0, float x1, float 
y1, 
+                           float border, float ripple, int type) {
        init();
        PyObject[] params = new PyObject[] {
            new PyFloat(x0),
@@ -76,7 +81,8 @@
            new PyFloat(x1),
            new PyFloat(y1),
            new PyFloat(border),
-           new PyFloat(ripple)
+           new PyFloat(ripple),
+           new PyInteger(type)
        };
        PyInstance ret = ((PyInstance)constr.__call__(params));
        if(ret == null)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]