Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions coresdk/src/coresdk/images.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ namespace splashkit_lib
* @attribute class bitmap
* @attribute method draw_bitmap
* @attribute self bmp
* @attribute suffix on_bitmap
*/
void draw_bitmap_on_bitmap(bitmap destination, bitmap bmp, double x, double y);

Expand All @@ -199,7 +198,7 @@ namespace splashkit_lib
* @attribute class bitmap
* @attribute method draw_bitmap
* @attribute self bmp
* @attribute suffix on_bitmap_with_options
* @attribute suffix with_options
*/
void draw_bitmap_on_bitmap(bitmap destination, bitmap bmp, double x, double y, drawing_options opts);

Expand Down Expand Up @@ -584,8 +583,10 @@ namespace splashkit_lib
* @param y The y coordinate within the bitmap to check
* @returns True if the pixel at that point in the bitmap is drawn.
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute self bmp
*/
bool pixel_drawn_at_point(bitmap bmp, double x, double y);

Expand All @@ -599,10 +600,11 @@ namespace splashkit_lib
* @returns True if the pixel at that point in the bitmap's cell is
* drawn.
*
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute suffix in_cell
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute self bmp
*/
bool pixel_drawn_at_point(bitmap bmp, int cell, double x, double y);

Expand All @@ -613,10 +615,11 @@ namespace splashkit_lib
* @param pt The point within the bitmap to check.
* @returns True if the pixel at that point in the bitmap is drawn.
*
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute suffix pt
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute self bmp
*/
bool pixel_drawn_at_point(bitmap bmp, const point_2d &pt);

Expand All @@ -629,10 +632,11 @@ namespace splashkit_lib
* @returns True if the pixel at that point in the bitmap's cell is
* drawn.
*
* @attribute suffix in_cell_pt
*
* @attribute class bitmap
* @attribute method pixel_drawn_at_point_in_cell
* @attribute class bitmap
* @attribute method pixel_drawn_at_point
* @attribute suffix in_cell_pt
* @attribute self bmp
*/
bool pixel_drawn_at_point(bitmap bmp, int cell, const point_2d &pt);
}
Expand Down
2 changes: 1 addition & 1 deletion coresdk/src/coresdk/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace splashkit_lib
*
* @param fnt The name of the font to be used
*
* @attribute suffix font_as_string
* @attribute suffix with_string
*/
void set_interface_font(const string& fnt);

Expand Down
2 changes: 1 addition & 1 deletion coresdk/src/coresdk/quad_geometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ namespace splashkit_lib
* @param width The width of the quad
* @return A quad that represents the line with the given width
*
* @attribute suffix from_line
* @attribute suffix line
*/
quad quad_from(const point_2d& line_origin, const point_2d& line_end, double width);

Expand Down
6 changes: 3 additions & 3 deletions coresdk/src/coresdk/sprites.h
Original file line number Diff line number Diff line change
Expand Up @@ -953,9 +953,9 @@ namespace splashkit_lib
* @param pt The point that is at the end of the vector.
* @returns A vector pointing from the sprite to the point.
*
* @attribute class sprite
* @attribute method vector_to
* @attribute suffix point
* @attribute class sprite
* @attribute method vector_from_center_to_point
* @attribute self s
*/
vector_2d vector_from_center_sprite_to_point(sprite s, const point_2d &pt);

Expand Down
Loading