ShapeSegment
Inheritance: java.lang.Object
public abstract class ShapeSegment
Representa un segmento de forma. Un segmento es una línea o curva que conecta dos puntos.
Constructores
| Constructor | Descripción |
|---|---|
| ShapeSegment() |
Métodos
| Método | Descripción |
|---|---|
| getStartPoint() | Obtiene el punto de inicio. |
| getEndPoint() | Obtiene el punto final. |
ShapeSegment()
public ShapeSegment()
getStartPoint()
public abstract PointF getStartPoint()
Obtiene el punto de inicio.
Returns: PointF - The starting point.
getEndPoint()
public abstract PointF getEndPoint()
Obtiene el punto final.
Returns: PointF - The ending point.