Exemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="point"></param>
 /// <returns></returns>
 public Vec2d VectorAt(Vec2d point)
 {
     return(SimplexNoise.VectorAt(point.X * ScaleX, point.Y * ScaleY));
 }
Exemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="point"></param>
 /// <returns></returns>
 public Vec3d VectorAt(Vec3d point)
 {
     ToNoiseSpace(ref point);
     return(SimplexNoise.VectorAt(point.X, point.Y, point.Z));
 }
Exemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="point"></param>
 /// <returns></returns>
 public Vec3d VectorAt(Vec3d point)
 {
     return(SimplexNoise.VectorAt(point.X * ScaleX, point.Y * ScaleY, point.Z * ScaleZ));
 }