edgeCenter method
Implementation
Float64List edgeCenter() {
late r.Matrix4 matrix4;
if (g?.options?.edgeShape == null) {
matrix4 = r.Matrix4.zero();
} else {
matrix4 = g!.options!.edgeShape.edgeCenter(this);
}
return Float64List.fromList(matrix4.storage.toList());
}