Changeset 237:7fb8b67d2c5e in lemon-0.x for src/work/athos/xy
- Timestamp:
- 03/23/04 12:12:48 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@335
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/athos/xy/xy.h
r207 r237 18 18 19 19 ///Default constructor: both coordinates become 0 20 xy() { _x=_y=0;}20 xy() : _x(0), _y(0 ){ /*_x=_y=0;*/ } 21 21 22 22 ///Constructing from coordinates 23 xy(T a, T b) { _x=a; _y=b;}23 xy(T a, T b) : _x(a), _x(b) { /*_x=a; _y=b;*/ } 24 24 25 25 ///Gives back the x coordinate
Note: See TracChangeset
for help on using the changeset viewer.