Glare.Graphics.Rendering.ModelBuilder.Procedural C# (CSharp) Method

Procedural() public method

Create a model using a simple procedural generator that uses a regular grid over the value range. This can cause too much detail in some areas and too little in others depending upon the shape.
public Procedural ( ProceduralParameters parameters ) : void
parameters ProceduralParameters
return void
    public void Procedural(ProceduralParameters parameters)
    {
        if (parameters == null)
                throw new ArgumentNullException("parameters");
            parameters.Build();
    }
}