getVertices method

Float32List getVertices()

Implementation

Float32List getVertices() {
  final num = _bindings.spine_vertex_attachment_get_num_vertices(_attachment.cast());
  final vertices = _bindings.spine_vertex_attachment_get_vertices(_attachment.cast());
  return vertices.asTypedList(num);
}