C# Class CSharpGL.EvaluatorRenderer

This is an abstract evaluator i.e a bezier curve or surface.
Inheritance: RendererBase
Show file Open project: bitzhuwei/CSharpGL

Protected Properties

Property Type Description
controlPoints vec3[]

Public Methods

Method Description
EvaluatorRenderer ( IList controlPoints ) : System.Collections.Generic

This is a 1D evaluator, i.e a bezier curve.

Setup ( vec3 controlPoints ) : void

Method Details

EvaluatorRenderer() public method

This is a 1D evaluator, i.e a bezier curve.
public EvaluatorRenderer ( IList controlPoints ) : System.Collections.Generic
controlPoints IList
return System.Collections.Generic

Setup() public abstract method

public abstract Setup ( vec3 controlPoints ) : void
controlPoints vec3
return void

Property Details

controlPoints protected property

protected vec3[] controlPoints
return vec3[]