Dla dwuwymiarowego układu:
1 2 3 4 5 6 7 8 |
alfa - kąt ustawienia wzroku r - odległość jaka nas interesuje x' = x + Cos(DegToRad(alfa)) * r ; y' = y + Sin(DegToRad(alfa)) * r ; |
Dla trójwymiarowego układu:
1 2 3 4 5 6 7 8 9 10 |
alfa, beta - kąty: poziomy i pionowy r - odległość x' = x+Cos(DegToRad(alfa))*Cos(DegToRad(beta))*r y' = y+Sin(DegToRad(alfa))*Cos(DegToRad(beta))*r z' = z+Sin(DegToRad(beta))*r |
Musisz dodać do uses Math.
Autor: Toster