2011年4月1日
摘要: class MainClass{ struct Vector { public double x, y, z; public Vector(double x, double y, double z) { this.x = x; this.y = y; this.z = z; } public Vector(Vector rhs) { x = rhs.x; y = rhs.y; z = rhs.z; } public override string ToString() { return "(" + x + "," + y + "," 阅读全文
posted @ 2011-04-01 17:22 aparche 阅读(464) 评论(0) 推荐(0) 编辑