Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update: Pymol Plugin #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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