Help for this page

Select Code to Download


  1. or download this
    char * buffer = malloc( ... );
    read( source, buffer );
    ...
        case ELLIPSE: o = makeEllipseFromString( buffer ); break;
        ...
    }
    
  2. or download this
    class Rect;
    bool intersect( Rect* );
    bool intersect( Ellipse* );
    bool intersect( Polygon* );
    ...