
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
C++ 物理シミュレーション・テクニック - Qiita
template <typename type> struct vec3{ type x , y , z; vec3(void){ x = y = z = 0; } vec3(type init... template <typename type> struct vec3{ type x , y , z; vec3(void){ x = y = z = 0; } vec3(type init_x , type init_y , type init_z){ x = init_x; y = init_y; z = init_z; } //operator = vec3 operator=(const vec3& a){ this->x = a.x; this->y = a.y; this->z = a.z; return *this; } vec3 operator=(const type a){ this->x = a; this->y = a; this->z = a; return *this; } //operator +vec3 vec3 operator+() { return
2014/05/29 リンク