国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

構(gòu)建向量類Vecto4

2019-11-10 17:15:17
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

定義一個(gè)Vector4向量

class Vector4{ public double x,y,z,w; //構(gòu)造函數(shù)1 public Vector4(){} //構(gòu)造函數(shù)2 public Vector4(double x, double y, double z, double w) { this.x = x; this.y = y; this.z = z; this.w = w; } //構(gòu)造函數(shù)3 public Vector4(Vector4 v) { this.x = v.x; this.y = v.y; this.z = v.z; this.w = v.w; } //兩個(gè)向量減法 public static Vector4 Operator-(Vector4 a, Vector4 b) { Vector4 c = new Vector4(); c.x = a.x - b.x; c.y = a.y - b.y; c.z = a.z - b.z; c.w = a.w - b.w; return c; } //兩個(gè)向量加法 public static Vector4 operator+(Vector4 a, Vector4 b) { Vector4 c = new Vector4(); c.x = a.x + b.x; c.y = a.y + b.y; c.z = a.z + b.z; c.w = a.w + b.w; return c; } //兩個(gè)向量點(diǎn)乘 public double Dot(Vector4 v) { return this.x*v.x + this.y*v.y + this.z*v.z; } //兩個(gè)向量叉乘 public Vector4 Cross(Vector4 v) { return new Vector4(this.y * v.z - this.z * v.y, this.z * v.x - this.x * v.z, this.x * y - this.y * v.x, 0); }}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 昭觉县| 琼海市| 阿拉善盟| 武穴市| 邮箱| 金塔县| 绍兴县| 临夏县| 江城| 含山县| 垫江县| 麻阳| 东光县| 庐江县| 宁夏| 景宁| 太康县| 兴文县| 上栗县| 丘北县| 开鲁县| 阿拉善左旗| 汉源县| 雅江县| 平陆县| 永川市| 武乡县| 山丹县| 宣化县| 茌平县| 恩施市| 华安县| 古丈县| 百色市| 贺州市| 焉耆| 岳西县| 新龙县| 威信县| 开鲁县| 突泉县|