本文整理匯總了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
示例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
示例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
示例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())