当前位置: 首页>>代码示例>>Python>>正文


Python Surface.from_file方法代码示例

本文整理汇总了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()
开发者ID:weltenwort,项目名称:uni_cg2,代码行数:29,代码来源:cg2_ex2.py

示例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)
开发者ID:weltenwort,项目名称:uni_cg2,代码行数:5,代码来源:test_bezier_surface.py


注:本文中的surface.Surface.from_file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。