Cuboid public class Cuboid : Solid Documentation Code public double Height { get; } public double Length { get; } public double Width { get; } public static Cuboid ByCorners(Point lowPoint, Point highPoint) public static Cuboid ByLengths(double width = 1, double length = 1, double height = 1) public static Cuboid ByLengths(Point origin, double width = 1, double length = 1, double height = 1) public static Cuboid ByLengths(CoordinateSystem coordinateSystem, double width = 1, double length = 1, double height = 1)