Isosurface.RawModel.RawModel C# (CSharp) Method

RawModel() public method

public RawModel ( string filename, int width, int height, int length, float isolevel, bool flip = true, int bytes = 1 ) : System
filename string
width int
height int
length int
isolevel float
flip bool
bytes int
return System
        public RawModel(string filename, int width, int height, int length, float isolevel, bool flip = true, int bytes = 1)
        {
            Filename = filename;
            Width = width;
            Height = height;
            Length = length;
            IsoLevel = isolevel;
            Flip = flip;
            Bytes = bytes;
            Mrc = filename.EndsWith(".mrc");
        }
RawModel