public Vector3D() : this(1f, 1f, 1f)//用this来调
{ }
public Vector3D(float x, float y, float z)
{
this.x = x;
this.y = y;
this.z = z;
}版权声明:本文为bouquet12138原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。