.Net に組み込み型 Point3 はありますか? ある種のこれ
public class Point3D
{
public double X { get; set; }
public double Y { get; set; }
public double Z { get; set; }
}
自分で実装するのは難しくありませんが..
System.Windows.Forms.DataVisualization.ChartingPoint3Dがあるclass
float X, Y, ZSystem.Windows.Media.Media3DPoint3Dがあるstruct
double X, Y, ZstructVector3D が Point3D ではないことはわかっていますが、X、Y、Zだけが必要な場合:
System.Windows.Media.Media3DVector3Dを持っているstruct
double X, Y, ZSystem.NumericsVector3を持っているstruct
float X, Y, ZWinForms または WPFSystem.Numerics.Vector3 に依存しないだけです。