ShapeSegment
Inheritance: java.lang.Object
public abstract class ShapeSegment
Rappresenta un segmento di forma. Un segmento è una linea o una curva che collega due punti.
Costruttori
| Costruttore | Descrizione |
|---|---|
| ShapeSegment() |
Metodi
| Metodo | Descrizione |
|---|---|
| getStartPoint() | Restituisce il punto iniziale. |
| getEndPoint() | Restituisce il punto finale. |
ShapeSegment()
public ShapeSegment()
getStartPoint()
public abstract PointF getStartPoint()
Restituisce il punto iniziale.
Returns: PointF - The starting point.
getEndPoint()
public abstract PointF getEndPoint()
Restituisce il punto finale.
Returns: PointF - The ending point.