本文整理汇总了C++中image::position方法的典型用法代码示例。如果您正苦于以下问题:C++ image::position方法的具体用法?C++ image::position怎么用?C++ image::position使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类image
的用法示例。
在下文中一共展示了image::position方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: append_image
void jsonwriter::append_image(const image& img) {
rapidjson::Value frame("frame");
frame.SetObject();
// name value
rapidjson::Value name(rapidjson::StringRef(img.name().c_str()));
frame.AddMember("name", name, document_.GetAllocator());
// size value which contains actual width and height
rapidjson::Value size;
size.SetObject();
size.AddMember("width",
img.size().width,
document_.GetAllocator());
size.AddMember("height",
img.size().height,
document_.GetAllocator());
frame.AddMember("size", size, document_.GetAllocator());
// position value on spritesheet
rapidjson::Value position;
position.SetObject();
position.AddMember("x",
img.position().x,
document_.GetAllocator());
position.AddMember("y",
img.position().y,
document_.GetAllocator());
frame.AddMember("position", position, document_.GetAllocator());
// offset value that defines how much space was trimmed
rapidjson::Value offset;
offset.SetObject();
offset.AddMember("x",
img.offset().x,
document_.GetAllocator());
offset.AddMember("y",
img.offset().y,
document_.GetAllocator());
frame.AddMember("offset", offset, document_.GetAllocator());
// source value which contains the original image size
rapidjson::Value source;
source.SetObject();
source.AddMember("width",
img.o_size().width,
document_.GetAllocator());
source.AddMember("height",
img.o_size().height,
document_.GetAllocator());
frame.AddMember("source", source, document_.GetAllocator());
// add finished frame to frames array
document_["frames"].PushBack(frame, document_.GetAllocator());
}