Exemplo n.º 1
0
 public Grad(GradTypes gradType, Interpolation interpolation)
 {
     this.gradType      = gradType;
     this.interpolation = interpolation;
     this.limitedType   = LimitedTypes.none;
     parameters         = "";
 }
Exemplo n.º 2
0
 public Grad(GradTypes gradType, Interpolation interpolation, LimitedTypes limitedType, string parameters)
 {
     this.limitedType   = limitedType;
     this.gradType      = gradType;
     this.interpolation = interpolation;
     this.parameters    = parameters;
 }
Exemplo n.º 3
0
 public Grad(GradTypes gradType)
 {
     this.gradType = gradType;
     limitedType   = LimitedTypes.none;
     interpolation = null;
     parameters    = "";
 }