25 lines
647 B
C
25 lines
647 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../../libs.h"
|
|
#include "../../display/primitive.h"
|
|
|
|
#define POKER_WORLD_SEAT_DISTANCE -1
|
|
#define POKER_WORLD_SEAT_ROTATION(n) ((8 - n) * 0.785398)
|
|
|
|
#define POKER_WORLD_SEAT_POSITION_X(n) ( \
|
|
POKER_WORLD_SEAT_DISTANCE * (float)sin(POKER_WORLD_SEAT_ROTATION(n)) \
|
|
)
|
|
#define POKER_WORLD_SEAT_POSITION_Y -0.2f
|
|
#define POKER_WORLD_SEAT_POSITION_Z(n) ( \
|
|
POKER_WORLD_SEAT_DISTANCE * (float)cos(POKER_WORLD_SEAT_ROTATION(n)) \
|
|
)
|
|
|
|
typedef struct {
|
|
primitive_t skywall;
|
|
} pokerworld_t; |