Cosa fanno ptLineDist e relativeCCW? [chiuso]

-2

Ho visto questi metodi nei Line2D Java Docs ma non hanno capito cosa fanno?

Javadoc per ptLineDist dice:

Returns the distance from a point to this line. The distance measured is the distance between the specified point and the closest point on the infinitely-extended line defined by this Line2D. If the specified point intersects the line, this method returns 0.0

Doc per relativeCCW dice:

Returns an indicator of where the specified point (PX, PY) lies with respect to the line segment from (X1, Y1) to (X2, Y2). The return value can be either 1, -1, or 0 and indicates in which direction the specified line must pivot around its first endpoint, (X1, Y1), in order to point at the specified point (PX, PY).

A return value of 1 indicates that the line segment must turn in the direction that takes the positive X axis towards the negative Y axis. In the default coordinate system used by Java 2D, this direction is counterclockwise.

A return value of -1 indicates that the line segment must turn in the direction that takes the positive X axis towards the positive Y axis. In the default coordinate system, this direction is clockwise.

A return value of 0 indicates that the point lies exactly on the line segment. Note that an indicator value of 0 is rare and not useful for determining colinearity because of floating point rounding issues.

If the point is colinear with the line segment, but not between the endpoints, then the value will be -1 if the point lies "beyond (X1, Y1)" or 1 if the point lies "beyond (X2, Y2)".

    
posta Fasih Khatib 22.09.2012 - 04:40
fonte

1 risposta

1

ptLineDist è la distanza più breve tra un punto e una linea.

Un trucco da notare è che è una linea infinitamente estesa, il che significa che la linea è estesa all'infinito in entrambe le direzioni e allora viene determinata la distanza tra la linea e il punto.

Non eseguo lavori di programmazione 2D, ma questo potrebbe essere utile se provassi a determinare quanto lontano un oggetto (definito da un punto di riferimento) proveniva dalla linea dell'orizzonte di un altro oggetto.

relativeCCW indica la direzione in cui una linea dovrebbe ruotare per dirigersi su un punto. (Volevo davvero dire "punta a un punto" lì).

Penso che le loro definizioni di senso orario / antiorario siano all'indietro, ma qualunque sia, almeno sono definite. Vorrei sperimentare e convalidare i risultati.

Potrebbe essere utile se avessi un vettore o una freccia e volessi vedere quale direzione aveva bisogno di ruotare dalla sua base per allinearsi al mio punto. Quindi, se dovessi scrivere un'applicazione per la bussola, potrei tenere traccia del modo in cui ruotare per arrivare a Nord.

    
risposta data 23.09.2012 - 19:04
fonte

Leggi altre domande sui tag