本文整理汇总了C++中Point::Move方法的典型用法代码示例。如果您正苦于以下问题:C++ Point::Move方法的具体用法?C++ Point::Move怎么用?C++ Point::Move使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Point
的用法示例。
在下文中一共展示了Point::Move方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: StartUp
void StartUp()
{
if (mover)
{
for (int i = 1; i <= 200000000; ++i)
{
pnt->Move(i, i);
}
}
else
{
for (int i = 1; i <= 200; ++i)
{
printf("%s\n", pnt->ToString());
Sleep(1);
}
}
}
示例2: test_three
void test_three()
{
Circle *circle ;
Point *point ;
Shape *shape ;
IMethod *ptr ;
double area = 0.0 ;
circle = New(Circle) ;
circle->Set(circle , 10.0 , 20.0) ;
circle->Move(circle , 100.0 , 300.0) ;
circle->Position(circle) ;
circle->SetRadius(circle , 30.0) ;
area = circle->Area(circle) ;
circle->SetCircle(circle , 1.0 , 2.0 , 3.0) ;
shape = (Shape*)circle ;
shape->Position(shape) ;
area = shape->Area(shape) ;
point = (Point*)circle ;
point->Move(point , 1000.0 , 2000.0) ;
point->Position(point) ;
circle->AddRadius(circle , 50.0) ;
area = point->Area(point) ;
ptr = (IMethod*)circle ;
// area = ptr->Area() ;
ptr->GetClassName() ;
Delete(ptr) ;
}