パッケージ名
taustation_geom2d
クラス
- taustation_geom2d.Vector
- 2次元ベクトルを保持し、各種演算を行うメソッドを提供する。
- taustation_geom2d.MovingAgent
- 位置と速度を保持し、互いの位置関係を判定するメソッドを提供する。
コードの骨組み
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# 2次元の幾何図形等のパッケージ # ver1.0 # 20160724 # ver1.1 # 20160729 # Vector.distance()を追加 exports = this exports.taustation_geom2d = {} do -> # 2次元ベクトルのクラス class Vector # 位置と速度を保持するクラス class MovingAgent taustation_geom2d.Vector = Vector taustation_geom2d.MovingAgent = MovingAgent |