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


Python Vector.getMagnitude方法代码示例

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


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

示例1: uncollide

# 需要导入模块: import Vector [as 别名]
# 或者: from Vector import getMagnitude [as 别名]
 def uncollide(self,o):
     """
     moves this object out of the other object
     which prevents collision detection from changing velocity moar than once
     DOESN'T CHANGE VELOCITY
     """
 
     if o.isCircle():
         normal = Vector( o.centerx - self.centerx, self.centery - o.centery )
         distanceToMove = self.width/2.0 + o.width/2.0 - normal.getMagnitude()
         
         normal.setVector( Vector (-normal.x, -normal.y ) )
         normal.setVector( normal.getUnitVector() ) # set's to 1 so we can multiply better
         normal = normal.multiply( distanceToMove ); #gets short vector
         
         self.setX( self.x + normal.x)
         self.setY( self.y - normal.y)
     else:
         posRel = self.posRelTo(o)
         if posRel == 1: self.setY( self.y - ( self.y + self.height - o.y ) )
         elif posRel == 2: self.setX( self.x - ( self.x + self.width - o.x ) )
         elif posRel == 3: self.setX( self.x + ( o.x + o.width - self.x ) )
         elif posRel == 4: self.setY( self.y + ( o.y + o.height - self.y ) )
         else: self.setY( self.y - ( self.y + self.height - o.y ) ) #just move it up
开发者ID:blendmaster,项目名称:Rokkit-Tanx,代码行数:26,代码来源:PhysicsObject.py


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