Py5Shape.get_vertex_code()#
Get the vertex code for a particular vertex code index.
Examples#
SHAPE_VERTEX_CODES = {py5.Py5Shape.BREAK: 'BREAK',
py5.Py5Shape.VERTEX: 'VERTEX'}
def setup():
py5.size(100, 100, py5.P2D)
s = py5.create_shape()
s.begin_shape()
s.vertex(20, 20)
s.vertex(80, 20)
s.vertex(80, 80)
s.vertex(20, 80)
s.begin_contour()
s.vertex(40, 40)
s.vertex(40, 60)
s.vertex(60, 60)
s.vertex(60, 40)
s.end_contour()
s.end_shape(py5.CLOSE)
py5.shape(s)
py5.println(s.get_vertex_count(), s.get_vertex_code_count()) # 8 9
# ['VERTEX', 'VERTEX', 'VERTEX', 'VERTEX', 'BREAK', 'VERTEX', 'VERTEX', 'VERTEX', 'VERTEX']
py5.println([SHAPE_VERTEX_CODES[s.get_vertex_code(i)]
for i in range(s.get_vertex_code_count())])
Description#
Get the vertex code for a particular vertex code index. The vertex codes can be used to inspect a shape’s geometry to determine what kind of vertices it has. Each can be one of BREAK
, VERTEX
, BEZIER_VERTEX
, QUADRATIC_VERTEX
or CURVE_VERTEX
.
The vertex codes will not necessarily align with the vertices because number of vertex codes may be larger than the number of vertices. This will be the case for shapes that use contours, and therefore contain BREAK
codes.
Underlying Processing method: PShape.getVertexCode
Signatures#
get_vertex_code(
index: int, # vertex code index
/,
) -> int
Updated on March 06, 2023 02:49:26am UTC