本文整理汇总了C++中Vector2::Data方法的典型用法代码示例。如果您正苦于以下问题:C++ Vector2::Data方法的具体用法?C++ Vector2::Data怎么用?C++ Vector2::Data使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Vector2
的用法示例。
在下文中一共展示了Vector2::Data方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
Vector2 first;
Vector2 second;
string input;
cout << "Do you want to give values to the x or y of the first vector?\nType in yes or no.\n";
for (int i = 0; i < 2; i++)
{
getline(cin, input);
if (input == "yes")
{
first.Initialise(first);
i = 2;
}
else if (input == "no")
{
i = 2;
}
else
{
i = 0;
}
}
system("cls");
cout << "Do you want to give values to the x or y of the second vector?\nType in yes or no.\n";
for (int i = 0; i < 2; i++)
{
getline(cin, input);
if (input == "yes")
{
second.Initialise(second);
i = 2;
}
else if (input == "no")
{
i = 2;
}
else
{
i = 0;
}
}
system("cls");
cout << "Do you want to see the data for the first vector?\nType in yes or no.\n";
for (int i = 0; i < 2; i++)
{
getline(cin, input);
if (input == "yes")
{
first.Data(first);
i = 2;
}
else if (input == "no")
{
i = 2;
}
else
{
i = 0;
}
}
system("cls");
cout << "Do you want to see the data for the second vector?\nType in yes or no.\n";
for (int i = 0; i < 2; i++)
{
getline(cin, input);
if (input == "yes")
{
second.Data(second);
i = 2;
}
else if (input == "no")
{
i = 2;
}
else
{
i = 0;
}
}
system("cls");
cout << "Do you want to add or subtract the values of the second vector to the first \nvector?\nType in yes or no.\n";
for (int i = 0; i < 2; i++)
{
getline(cin, input);
if (input == "yes")
{
first.Addition(second);
i = 2;
}
else if (input == "no")
{
i = 2;
}
else
{
i = 0;
}
}
//.........这里部分代码省略.........
示例2: Read
Vector2 Deserializer::ReadVector2()
{
Vector2 ret;
Read((void*)ret.Data(), sizeof ret);
return ret;
}