vertices property

ArrayFloat get vertices

The vertex positions in the bone's coordinate system. For a non-weighted attachment, the values are x,y pairs for each vertex. For a weighted attachment, the values are x,y,weight triplets for each bone affecting each vertex.

Implementation

ArrayFloat get vertices {
  final result = SpineBindings.bindings.spine_vertex_attachment_get_vertices(_ptr);
  return ArrayFloat.fromPointer(result);
}
set vertices (ArrayFloat value)

Implementation

set vertices(ArrayFloat value) {
  SpineBindings.bindings.spine_vertex_attachment_set_vertices(_ptr, value.nativePtr.cast());
}