📄 point3d.as
字号:
/**
* project3D Engine
* @author John Sword
* @version 2 - AS3
*/
package engine.geom
{
public class Point3D
{
public var x:Number;
public var y:Number;
public var z:Number;
/**
* Create a new Point3D
*
* @param x the x coordinate
* @param y the y coordinate
* @param z the z coordinate
*/
public function Point3D ( x:Number = 0, y:Number = 0, z:Number = 0)
{
this.x = x || 0;
this.y = y || 0;
this.z = z || 0;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -