예제 #1
0
파일: SingleBlur.cs 프로젝트: Thomsch/EVA
 public SingleBlur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WFloat), value)
 {
 }
예제 #2
0
파일: Addition.cs 프로젝트: Thomsch/EVA
 public Addition(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.value = value;
 }
예제 #3
0
 public StructuralModifier(Set extensions)
     : base(extensions)
 {
 }
예제 #4
0
 public GeneticModifier(Set extensions, Set genes, Type computeType)
     : base(extensions)
 {
     this.TargetedGenes = genes;
     this.computeType = computeType;
 }
예제 #5
0
파일: Blur.cs 프로젝트: Thomsch/EVA
 public Blur(Set extensions, Set genes, System.Type type, float value)
     : base(extensions, genes, type)
 {
     this.Value = value;
 }
예제 #6
0
파일: Blur.cs 프로젝트: Thomsch/EVA
 public Blur(Set extensions, Set genes, float value)
     : base(extensions, genes, typeof(WVector3))
 {
     this.Value = value;
 }
예제 #7
0
파일: Modifier.cs 프로젝트: Thomsch/EVA
 public Modifier(Set targetedExtensions)
 {
     this.TargetedExtensions = targetedExtensions;
 }