26 lines
632 B
C
26 lines
632 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include <dawn/dawn.h>
|
|
#include "../../display/camera.h"
|
|
|
|
/**
|
|
* Look at a specific seats' player.
|
|
*
|
|
* @param camera Camera to adjust.
|
|
* @param seat Seat to look at.
|
|
* @param distance Distance from the seat to look from. 0 is default.
|
|
*/
|
|
void pokerLookAtPlayer(camera_t *camera, uint8_t seat, float distance);
|
|
|
|
/**
|
|
* Look at a specific seats' hand.
|
|
*
|
|
* @param camera Camera to adjust.
|
|
* @param seat Seats hand to look at.
|
|
*/
|
|
void pokerLookAtHand(camera_t *camera, uint8_t seat); |