コード例 #1
0
ファイル: attribute_utils.py プロジェクト: octwanna/PyMesh
def convert_to_voxel_attribute_from_name(mesh, name):
    return PyMesh.convert_to_voxel_attribute_from_name(mesh.raw_mesh, name)
コード例 #2
0
def convert_to_voxel_attribute_from_name(mesh, name):
    """ Same as :py:func:`convert_to_voxel_attribute` except looking up
    attribute values from the input ``mesh`` using ``name``.
    """
    return PyMesh.convert_to_voxel_attribute_from_name(mesh.raw_mesh, name)
コード例 #3
0
ファイル: attribute_utils.py プロジェクト: qnzhou/PyMesh
def convert_to_voxel_attribute_from_name(mesh, name):
    """ Same as :py:func:`convert_to_voxel_attribute` except looking up
    attribute values from the input ``mesh`` using ``name``.
    """
    return PyMesh.convert_to_voxel_attribute_from_name(mesh.raw_mesh, name);