CCVertex3D.java :  » UnTagged » quiniandroid » org » cocos2d » types » Android Open Source

Android Open Source » UnTagged » quiniandroid 
quiniandroid » org » cocos2d » types » CCVertex3D.java
package org.cocos2d.types;


//! A 3D vertex
public class CCVertex3D {
    public float x;
    public float y;
    public float z;

    public CCVertex3D(float x, float y, float z) {
        this.x = x;
        this.y = y;
        this.z = z;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.