エントリーの編集

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

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
平面と平面方程式
平面方程式を計算する プログラミング例 #include <math.h> //平面の定義 class Plane { //ax+by+cz+d=... 平面方程式を計算する プログラミング例 #include <math.h> //平面の定義 class Plane { //ax+by+cz+d=0 public: double a,b,c,d; Plane(){} Plane(double a,double b,double c,double d){ this->a = a; this->b = b; this->c = c; this->d = d; } }; //ベクトルの定義 class Vector3D{ public: double x,y,z; Vector3D(){} Vector3D( double x, double y, double z) {this->x = x; this->y = y; this->z = z; } //ベクトル引き算( this - v ) Vector3D operator - ( con