You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
489 B
C
19 lines
489 B
C
#ifndef SHAPE_H
|
|
#define SHAPE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Shape's attributes... */
|
|
typedef struct {
|
|
int16_t x; /* x-coordinate of Shape's position */
|
|
int16_t y; /* y-coordinate of Shape's position */
|
|
} Shape;
|
|
|
|
/* Shape's operations... */
|
|
void Shape_ctor(Shape * const me, int16_t x0, int16_t y0);
|
|
void Shape_moveBy(Shape * const me, int16_t dx, int16_t dy);
|
|
uint16_t Shape_distanceFrom(Shape const * const me,
|
|
Shape const * other);
|
|
|
|
#endif /* SHAPE_H */
|