SLIDE 1
#ifndef POINT_H_ #define POINT_H_ typedef struct { float x; - - PowerPoint PPT Presentation
#ifndef POINT_H_ #define POINT_H_ typedef struct { float x; - - PowerPoint PPT Presentation
#ifndef POINT_H_ #define POINT_H_ typedef struct { float x; float y; } Point; Point makePoint(float x, float y); Point midPoint(Point p1, Point p2); #endif
SLIDE 2
SLIDE 3
SLIDE 4
#ifndef POINT_H_ #define POINT_H_ typedef struct { float x; float y; } Point; Point makePoint(float x, float y); Point midPoint(Point p1, Point p2); #endif
SLIDE 5
- –
– – –
SLIDE 6
SLIDE 7
- –
SLIDE 8