public PFRadialPotentialField(PF_TYPE type, Vector3 point,
         int potential, int gradation)
     : base(type, point)
 {
     this.potential = potential;
     this.gradation = gradation;
 }
 public PFRadialPotentialField
     (PF_TYPE type, Vector3 point,
     int potential, int gradation)
     : base(type, point)
 {
     this.potential = potential;
     this.gradation = gradation;
 }
 public PFHorizontalPotentialField(PF_TYPE type, Vector3 point,
         int potential, int gradation, int halfWidth)
     : base(type, point)
 {
     this.potential = potential;
     this.gradation = gradation;
     this.halfWidth = halfWidth;
 }
 public PFHorizontalPotentialField
     (PF_TYPE type, Vector3 point,
     int potential, int gradation, int halfWidth)
     : base(type, point)
 {
     this.potential = potential;
     this.gradation = gradation;
     this.halfWidth = halfWidth;
 }
 public PFRectangularPotentialField(
     PF_TYPE type, Vector3 point, 
         int potential, int gradation, int halfWidth, int halfHeight)
     : base(type, point)
 {
     this.potential = potential;
     this.gradation = gradation;
     this.halfWidth = halfWidth;
     this.halfHeight = halfHeight;
 }
Example #6
0
 public PFRectangularPotentialField(
     PF_TYPE type, Vector3 point,
     int potential, int gradation, int halfWidth, int halfHeight)
     : base(type, point)
 {
     this.potential  = potential;
     this.gradation  = gradation;
     this.halfWidth  = halfWidth;
     this.halfHeight = halfHeight;
 }
 public PFPotentialField(PF_TYPE type, Vector3 point)
 {
     this.type = type;
     this.position = point;
 }
Example #8
0
 public PFAgent(
     PF_TYPE type, Vector3 position, int potential, int gradation)
     : base(type, position, potential, gradation)
 {
 }
 public PFPotentialField(PF_TYPE type, Vector3 point)
 {
     this.type     = type;
     this.position = point;
 }
 public PFAgent(
     PF_TYPE type, Vector3 position, int potential, int gradation)
     : base(type, position, potential, gradation)
 {
 }