Follow-up of a7d1c9b5e9 - Simplified code to generate a smooth cylinder

This commit is contained in:
enricoturri1966 2022-08-23 13:53:55 +02:00
parent adb3d0101d
commit 74d3227703
3 changed files with 12 additions and 42 deletions

View file

@ -23,7 +23,7 @@ GLGizmoMeasure::GLGizmoMeasure(GLCanvas3D& parent, const std::string& icon_filen
: GLGizmoBase(parent, icon_filename, sprite_id)
{
m_vbo_sphere.init_from(smooth_sphere(16, 7.5f));
m_vbo_cylinder.init_from(smooth_cylinder(Z, 16, 5.0f, 1.0f));
m_vbo_cylinder.init_from(smooth_cylinder(16, 5.0f, 1.0f));
}
bool GLGizmoMeasure::on_mouse(const wxMouseEvent &mouse_event)