Exemplo n.º 1
0
 public SingleBlur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WFloat), value)
 {
 }
Exemplo n.º 2
0
 public Addition(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.value = value;
 }
Exemplo n.º 3
0
 public StructuralModifier(Set extensions)
     : base(extensions)
 {
 }
Exemplo n.º 4
0
 public GeneticModifier(Set extensions, Set genes, Type computeType)
     : base(extensions)
 {
     this.TargetedGenes = genes;
     this.computeType = computeType;
 }
Exemplo n.º 5
0
Arquivo: Blur.cs Projeto: Thomsch/EVA
 public Blur(Set extensions, Set genes, System.Type type, float value)
     : base(extensions, genes, type)
 {
     this.Value = value;
 }
Exemplo n.º 6
0
Arquivo: Blur.cs Projeto: Thomsch/EVA
 public Blur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.Value = value;
 }
Exemplo n.º 7
0
 public Modifier(Set targetedExtensions)
 {
     this.TargetedExtensions = targetedExtensions;
 }