Newer
Older
Import / applications / RocketMan / Source Code / PointArray.h
@John John on 29 Dec 2020 457 bytes bulk import from macbookpro checkouts
/*
 *  PointArray.h
 *  iphone-gl-app
 *
 *  Created by John Ryland on 16/06/09.
 *  Copyright 2009 InvertedLogic. All rights reserved.
 *
 */

#ifndef POINT_ARRAY_H
#define POINT_ARRAY_H


#include "PointF.h"
#include "Iterators.h"


class PointArray : public List<PointF>
{
public:
	PointArray();
	PointArray(int size);
	~PointArray();

	void translate(float x, float y);
	void rotate(float r);
	void scale(float x, float y);
};


#endif // POINT_ARRAY_H