gpt4 book ai didi

c++ - getContentSize() 和 getBoundingBox() 有什么区别

转载 作者:行者123 更新时间:2023-11-30 05:42:58 24 4
gpt4 key购买 nike

注意到

的结果
1- sprite->getContentSize() 

2- sprite->getBoundingBox().size() 

在涉及缩放时是不同的,通常内容大小的值小于边界框。如果有人能向我解释两者之间的区别,我将不胜感激。

这是我观察到的。如果我不缩放我的 Sprite ,我会从 sprite->getContentSize()sprite->getBoundingBox().size() 得到相同的结果。但是,如果我按以下方式缩放我的 Sprite

s->setScaleX((screenSize.width / s->getContentSize().width) * 1); //where screenSize is the Visible size

则边界框大小大于内容大小。这是为什么?

最佳答案

来自文档:

getContentSize () const
Returns the untransformed size of the node.

getBoundingBox () const
Returns an AABB (axis-aligned bounding-box) in its parent's coordinate system.

在下图中,红色区域是contentSize,白色区域是boundingBox。如果红色矩形没有旋转,这将是相同的。

simpleexample

关于c++ - getContentSize() 和 getBoundingBox() 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30415463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com