码迷,mamicode.com
首页 > 其他好文 > 详细

一个简单的二维向量类

时间:2018-05-11 23:38:21      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:complex   mat   判断   bool   abs   pytho   auth   __init__   math   

# _*_ coding: utf-8 _*_
__author__ = ‘pythonwu‘
__date__ = "2018/5/11 18:21"

from math import hypot

class Vecotr:
def __init__(self,x=0,y=0):
self.x = x
self.y = y

def __repr__(self):
return "Vector(%r,%r)" %(self.x,self.y)

def __abs__(self):
return hypot(self.x,self.y)

def __bool__(self):
return bool(self.x or self.y)

def __add__(self, other):
x = self.x + other.x
y = self.y + other.y
return Vecotr(x,y)

def __mul__(self, scalar):
return Vecotr(self.x*scalar,self.y*scalar)

注释:其实最简单是使用complex类来实现 ,但是当需要多维向量的时候就不是很方便了,这个类可以扩展至n维向量
注释:自定义对象bool方法(内置)__bool__方法不存在的时候,调用__len__判断真假

一个简单的二维向量类

标签:complex   mat   判断   bool   abs   pytho   auth   __init__   math   

原文地址:https://www.cnblogs.com/wudeng/p/9026336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!