Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified source/masif_pymol_plugin.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions source/masif_pymol_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# This pymol plugin for Masif just enables the load ply functions.

from pymol import cmd
from loadPLY import *
from loadDOTS import *
from .loadPLY import *
from .loadDOTS import *
import sys

def __init_plugin__(app):
Expand Down
2 changes: 1 addition & 1 deletion source/masif_pymol_plugin/loadPLY.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def load_ply(
# import pymesh
# mesh = pymesh.load_mesh(filename)

from simple_mesh import Simple_mesh
from .simple_mesh import Simple_mesh

mesh = Simple_mesh()
mesh.load_mesh(filename)
Expand Down