where I can find the name of python functions #2752
dhanraj-khatal
started this conversation in
General
Replies: 1 comment 1 reply
-
Hello! Python modules mostly have same interface as c++ library, but not all c++ functions and classes are available in python right now. from meshlib import mrmeshpy as mm
from meshlib import mrmeshnumpy as mn
help(mm)
help(mn) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use boolean operations in my Python scripts but in documentation, we have cpp classes and functions only, and in Python, examples are also limited. so for utilizing the operations in Python is there any documentation?
Beta Was this translation helpful? Give feedback.
All reactions