Mirai's Miscellaneous Misadventures

M24 / include / mimimi / poses.h

1// copyright 2022 zamfofex
2// license: AGPLv3 or later
3
4#ifndef MIMIMI_POSES_H
5#define MIMIMI_POSES_H
6
7struct mimimi_allocator;
8
9struct mimimi_pose_layer
10{
11	int slant;
12	int y_angle;
13	int z_angle;
14};
15
16struct mimimi_pose
17{
18	int x;
19	int y;
20	int count;
21	struct mimimi_pose_layer *layers;
22};
23
24void mimimi_pose(struct mimimi_image *image, struct mimimi_model *model, struct mimimi_pose *pose, struct mimimi_allocator *allocator);
25
26#endif