Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
negdo committed May 20, 2023
2 parents 12763f3 + a52609a commit 030a840
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions LocalRemesherAddon/Directed_edge.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import numpy as np
from other_utils import *
from .other_utils import *
import math

from other_utils import *


class Directed_edge:
Expand Down
6 changes: 3 additions & 3 deletions LocalRemesherAddon/improving_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import numpy as np
import heapq

from other_utils import *
from Directed_edge import *
from building_utils import sort_vertices
from .other_utils import *
from .Directed_edge import *
from .building_utils import sort_vertices

def get_edge_split_weight(face, start, end, avg_direction, direct_coords=False):
# start and end are vertices
Expand Down
2 changes: 1 addition & 1 deletion LocalRemesherAddon/loop_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys

sys.path.append("C:/Users/miham/Documents/3d/blender/scripts/local remesh/LocalRemesher/rewrite")
from Directed_edge import *
from .Directed_edge import *

# select next vertex in loop
def select_next(current_edge, vertex, selected_edges, illegal_edges):
Expand Down
2 changes: 1 addition & 1 deletion LocalRemesherAddon/selection_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys

sys.path.append("C:/Users/miham/Documents/3d/blender/scripts/local remesh/LocalRemesher/rewrite")
from Directed_edge import *
from .Directed_edge import *

# returns selected faces and their vertices
def get_selected(bm):
Expand Down

0 comments on commit 030a840

Please sign in to comment.