Esempio n. 1
0
Ball::Ball(const Ball& ball)
{
	_pPimpl = new BallPimpl;
	assert(_pPimpl);

	this->SetDiameter		(ball.GetDiameter		());
	this->SetCenterPoint	(ball.GetCenterPoint	());
	this->SetStatus			(ball.GetStatus			());
}