| 123456789101112131415161718192021222324252627282930 |
- package com.imt.intimamedia.helpers
- {
- // Added by Jdeppe march 2012
- // CJ suffix because first coder of Scale object (IMT V1) was Christophe Jacquelin
- // IMT Paris Opera district
- public class PointCJ
- {
- public var x:int; // Dimension Horizontale
- public var y:int; // Dimension Verticale
- public function PointCJ():void
- {
- x = 0;
- y = 0;
- }
- public function PointB(vx:int, vy:int):void
- {
- x = vx;
- y = vy;
- }
-
- public function Offset(xOffset:int, yOffset:int):void
- {
- x += xOffset;
- y += yOffset;
- }
- }
- }
|