From c19f7c1083945f39d683e396b057051384dce7d7 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 20 May 2021 08:43:50 -0700 Subject: [PATCH] Added comments for chip rendering. --- src/poker/render/chip.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/poker/render/chip.h b/src/poker/render/chip.h index 709c4321..72b4f22f 100644 --- a/src/poker/render/chip.h +++ b/src/poker/render/chip.h @@ -12,8 +12,23 @@ #include "../../display/shader.h" #include "../../display/texture.h" +/** + * Renders a stack of chips at a position. + * + * @param count Count of chips to render (Determines the stack size). + * @param x X position of the stack. + * @param y Y position of the stack. + * @param z Z position of the stack. + * @param yaw Rotation (YAW) of the chips. + */ void holdemRenderChipSet(int32_t count,float x,float y,float z,float yaw); +/** + * Get the position for a stack of chips based on a seat. + * + * @param seat Seat to get the position for. + * @return Position for the seat that the chips should render to. + */ pokerposition_t holdemRenderChipGetPosition(uint8_t seat); /**