Ahoj, snažíš se vžit do 3D modelování ve WPF, ale teď jsem narazil a nevím... Chtěl bych vytvořit krychli, ale u CreateTriangleModel mi to háže chybu, že to nemůže najít... nemáte s tím někdo prsoím zkušenosti?
var cube = new Model3DGroup();
Point3D p0 = new Point3D(0, 0, 0);
Point3D p1 = new Point3D(5, 0, 0);
Point3D p2 = new Point3D(5, 0, 5);
Point3D p3 = new Point3D(0, 0, 5);
Point3D p4 = new Point3D(0, 5, 0);
Point3D p5 = new Point3D(5, 5, 0);
Point3D p6 = new Point3D(5, 5, 5);
Point3D p7 = new Point3D(0, 5, 5);
cube.Children.Add(CreateTriangleModel(p3, p2, p6)); //chyba