close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 15 and Version 16 of TolOop


Ignore:
Timestamp:
Feb 11, 2010, 8:33:11 AM (15 years ago)
Author:
Víctor de Buen Remiro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TolOop

    v15 v16  
    287287   Real min.x, Real max.x,
    288288   Real min.y, Real max.y,
    289    Real min.r, Real max.r,)
     289   Real min.r, Real max.r)
    290290  {
    291291    @Circle::New(Rand(min.x,max.x),
     
    297297Real includes(Real x, Real y)
    298298{
    299   (x-_.center.x)^2+(y-_.center.y)^2<=_.radius^2
    300 }
    301 
    302 };
     299  (x-_.center.x_)^2+(y-_.center.y_)^2<=_.radius^2
     300};
     301Real outsides(Real x, Real y){ Not(includes(x,y)) }
     302}; 
    303303
    304304@Circle c1 = @Circle::New(0,0,1);