Fix #1937 Mirror modelling mesh selection issue

This commit is contained in:
JannisX11 2023-07-09 14:32:08 +02:00
parent 3e24f5b04e
commit 2fb1972b2c

View File

@ -78,9 +78,6 @@ const MirrorModeling = {
let edit_side = MirrorModeling.getEditSide();
// Delete all vertices on the non-edit side
let deleted_vertices = {};
let selected_vertices = mesh.getSelectedVertices(true);
//let selected_vertices = mesh.getSelectedEdges(true);
let selected_faces = mesh.getSelectedFaces(true);
let deleted_vertices_by_position = {};
function positionKey(position) {
return position.map(p => Math.roundTo(p, 2)).join(',');