mirror of https://github.com/axmolengine/axmol.git
72 lines
3.0 KiB
C
72 lines
3.0 KiB
C
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#ifndef __MATH_CCAFFINETRANSFORM_H__
|
|
#define __MATH_CCAFFINETRANSFORM_H__
|
|
|
|
#include "platform/CCPlatformMacros.h"
|
|
|
|
#include "math/CCGeometry.h"
|
|
#include "math/CCMath.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
struct CC_DLL AffineTransform {
|
|
float a, b, c, d;
|
|
float tx, ty;
|
|
|
|
static const AffineTransform IDENTITY;
|
|
};
|
|
|
|
CC_DLL AffineTransform __CCAffineTransformMake(float a, float b, float c, float d, float tx, float ty);
|
|
#define AffineTransformMake __CCAffineTransformMake
|
|
|
|
CC_DLL Vec2 __CCPointApplyAffineTransform(const Vec2& point, const AffineTransform& t);
|
|
#define PointApplyAffineTransform __CCPointApplyAffineTransform
|
|
|
|
CC_DLL Size __CCSizeApplyAffineTransform(const Size& size, const AffineTransform& t);
|
|
#define SizeApplyAffineTransform __CCSizeApplyAffineTransform
|
|
|
|
CC_DLL AffineTransform AffineTransformMakeIdentity();
|
|
CC_DLL Rect RectApplyAffineTransform(const Rect& rect, const AffineTransform& anAffineTransform);
|
|
|
|
CC_DLL Rect RectApplyTransform(const Rect& rect, const Mat4& transform);
|
|
CC_DLL Vec2 PointApplyTransform(const Vec2& point, const Mat4& transform);
|
|
|
|
CC_DLL AffineTransform AffineTransformTranslate(const AffineTransform& t, float tx, float ty);
|
|
CC_DLL AffineTransform AffineTransformRotate(const AffineTransform& aTransform, float anAngle);
|
|
CC_DLL AffineTransform AffineTransformScale(const AffineTransform& t, float sx, float sy);
|
|
CC_DLL AffineTransform AffineTransformConcat(const AffineTransform& t1, const AffineTransform& t2);
|
|
CC_DLL bool AffineTransformEqualToTransform(const AffineTransform& t1, const AffineTransform& t2);
|
|
CC_DLL AffineTransform AffineTransformInvert(const AffineTransform& t);
|
|
|
|
CC_DLL Mat4 TransformConcat(const Mat4& t1, const Mat4& t2);
|
|
|
|
extern CC_DLL const AffineTransform AffineTransformIdentity;
|
|
|
|
NS_CC_END
|
|
|
|
#endif // __MATH_CCAFFINETRANSFORM_H__
|