コード例 #1
0
 public static CSG Cylinder(int height, int radius)
 {
     return(CSG.Cylinder(new CSGVector(0, 0, 0), new CSGVector(0, height, 0), radius));
 }
コード例 #2
0
 public static CSG Cylinder()
 {
     return(CSG.Cylinder(30, 20));
 }