Tools
meyer.lst
Associated article: Writing Correct Software With Eiffel
Tags: C/C++ Tools
_WRITING CORRECT SOFTWARE WITH EIFFEL_
by Bertrand Meyer
[LISTING ONE]
class CIRCLE export
center, radius, intersect1, intersect2,
on, inside, outside,
translate, scale, rotate ...
feature
center: POINT;
radius: REAL;
intersect1(other: CIRCLE): POINT is
-- One of the intersections
-- of ...


