createCone method
Mesh
createCone({})
Creates a cone using the given radius, height, and materials.
Implementation
Mesh createCone(
{required double radius,
required double height,
List<MeshBasicMaterial>? materials}) {
throw UnimplementedError("createCone() has not been implemented.");
}