MCPcopy Create free account
hub / github.com/axmolengine/axmol / AffineTransformMake

Function AffineTransformMake

core/math/AffineTransform.cpp:37–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35{
36
37AffineTransform AffineTransformMake(float a, float b, float c, float d, float tx, float ty)
38{
39 AffineTransform t;
40 t.a = a;
41 t.b = b;
42 t.c = c;
43 t.d = d;
44 t.tx = tx;
45 t.ty = ty;
46 return t;
47}
48
49Vec2 PointApplyAffineTransform(const Vec2& point, const AffineTransform& t)
50{

Callers 6

AffineTransformTranslateFunction · 0.85
AffineTransformScaleFunction · 0.85
AffineTransformRotateFunction · 0.85
AffineTransformConcatFunction · 0.85
AffineTransformInvertFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected