Код расчета нормали по координатам

  1. public static Vector3D createNormal(Vector3D a, Vector3D b, Vector3D c, Vector3D nor) {
  2.         float x = (a.y-b.y)*(a.z-c.z) - (a.z-b.z)*(a.y-c.y);
  3.         float y = (a.z-b.z)*(a.x-c.x) - (a.x-b.x)*(a.z-c.z);
  4.         float z = (a.x-b.x)*(a.y-c.y) - (a.y-b.y)*(a.x-c.x);
  5.         float sqrt = Math.sqrt(x*x + y*y + z*z)*4096;
  6.         nor.set((int)(x*sqrt), (int)(y*sqrt), (int)(z*sqrt));
  7.         return nor;
  8. }
Есть также формула расчета нормали к полигону по нормали к
вершине (может приснилось :) ). Кто найдет, тому[green]+[/green]

Реклама

Мы в соцсетях

tw tg yt gt