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


Python GeoMath.pointInPoints方法代码示例

本文整理汇总了Python中lib.GeoMath.pointInPoints方法的典型用法代码示例。如果您正苦于以下问题:Python GeoMath.pointInPoints方法的具体用法?Python GeoMath.pointInPoints怎么用?Python GeoMath.pointInPoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lib.GeoMath的用法示例。


在下文中一共展示了GeoMath.pointInPoints方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: pointInTexture

# 需要导入模块: from lib import GeoMath [as 别名]
# 或者: from lib.GeoMath import pointInPoints [as 别名]
    def pointInTexture(self, point):
        inside = None
        if(self.get_absolute_points_not_erasable()):
            inside = GeoMath.pointInPoints(point, self.get_absolute_points_not_erasable())
        elif(self.get_absolute_points()):
            inside = GeoMath.pointInPoints(point, self.get_absolute_points())

        if(inside == None):
            if(self.get_is_default_texture()):
                inside = True
        return inside
开发者ID:csoriano89,项目名称:BuildingDestruction,代码行数:13,代码来源:Texture.py

示例2: contain_bounding_box_3D

# 需要导入模块: from lib import GeoMath [as 别名]
# 或者: from lib.GeoMath import pointInPoints [as 别名]
    def contain_bounding_box_3D(self, bounding_box):
        try:
            if not self.get_prim():
                raise Errors.CantBeNoneError("Prim cant be none", "We need a prim to calculate tbn some steps after")
        except Errors.CantBeNoneError as e:
            Errors.Error.display_exception(e)
            exit()

        inside = True
        if not self.get_rectangle_tangent_space():
            self.convert_3D_to_2D(self.get_prim())
        this_point_relative = self.get_tbn_class().get_point_which_is_relative()
        this_tbn_inverse_matrix = self.get_tbn_class().get_tbn_inverse()
        param_bounding_box_points_in_this_tangent_space = []
        for point in bounding_box.get_points_object_space():
            point_relative = GeoMath.vecSub(point, this_point_relative)
            point_tangent_space = this_tbn_inverse_matrix.mulPoint3ToMatrix3(point_relative)
            param_bounding_box_points_in_this_tangent_space.append(list(point_tangent_space))

        for point in param_bounding_box_points_in_this_tangent_space:
            logging.debug("Rectangle tangent space" + str(self.get_rectangle_tangent_space()))
            inside = GeoMath.pointInPoints(point, self.get_rectangle_tangent_space())
            if not inside:
                break
        return inside
开发者ID:csoriano89,项目名称:BuildingDestruction,代码行数:27,代码来源:BoundingBox.py

示例3: contain_point_3D

# 需要导入模块: from lib import GeoMath [as 别名]
# 或者: from lib.GeoMath import pointInPoints [as 别名]
 def contain_point_3D(self, point):
     inside = None
     if not self.get_points_tangent_space():
         self.create_3D_to_2D_rectangle(self.get_prim())
         inside = GeoMath.pointInPoints(point, self.get_points_tangent_space())
     return inside
开发者ID:csoriano89,项目名称:BuildingDestruction,代码行数:8,代码来源:BoundingBox.py

示例4: contain_point_2D

# 需要导入模块: from lib import GeoMath [as 别名]
# 或者: from lib.GeoMath import pointInPoints [as 别名]
 def contain_point_2D(self, point):
     return GeoMath.pointInPoints(point, self.get_points_object_space())
开发者ID:csoriano89,项目名称:BuildingDestruction,代码行数:4,代码来源:BoundingBox.py


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