本文整理汇总了Python中surface.Surface.from_file方法的典型用法代码示例。如果您正苦于以下问题:Python Surface.from_file方法的具体用法?Python Surface.from_file怎么用?Python Surface.from_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类surface.Surface
的用法示例。
在下文中一共展示了Surface.from_file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: apply
# 需要导入模块: from surface import Surface [as 别名]
# 或者: from surface.Surface import from_file [as 别名]
def apply(self):
self._log.debug(u"""Applying values
filename: '%s',
subdivisions: '%f',
bezier factor: '%f'""" % (
self.surface_filename,
self.surface_subdivisions,
self.bezier_factor))
if self.surface:
del self.surface
if self.plane:
self.plane.removeNode()
self.plane = None
if self.mls_surface:
self.mls_surface.removeNode()
self.mls_surface = None
if self.bezier_surface:
self.bezier_surface.removeNode()
self.bezier_surface = None
if self.point_cloud:
self.point_cloud.removeNode()
self.point_cloud = None
self.surface = Surface.from_file(self.surface_filename)
self._toggle_plane()
self._toggle_mls_surface()
self._toggle_bezier_surface()
self._toggle_point_cloud()
示例2: setUp
# 需要导入模块: from surface import Surface [as 别名]
# 或者: from surface.Surface import from_file [as 别名]
def setUp(self):
self.model_filename = "pointdata/franke4.off"
self.surface = Surface.from_file(self.model_filename)