draw_triangle_colour

With this function you can draw either an outline of a triangle or a filled triangle. If it is filled you can define the individual colours for each corner point and if these colours are not the same, you will get a gradient effect from one to the other (the colour settings will over-ride the base colour set with the function draw_set_colour()).

NOTE If you want to draw a shape using a shader, you should be aware that most shaders expect the following inputs: vertex, texture, colour. However, when using this function, only vertex and colour data are being passed in, and so the shader may not draw anything (or draw something but not correctly). If you need to draw shapes in this way then the shader should be customised with this in mind.

 

Syntax:

draw_triangle_colour(x1, y1, x2, y2, x3, y3, col1, col2, col3, outline);

ArgumentTypeDescription
x1RealThe x coordinate of the triangle's first corner.
y1RealThe y coordinate of the triangle's first corner.
x2RealThe x coordinate of the triangle's second corner.
y2RealThe y coordinate of the triangle's second corner.
x3RealThe x coordinate of the triangle's third corner.
y3RealThe y coordinate of the triangle's third corner.
col1ColourThe colour of the first corner.
col2ColourThe colour of the second corner.
col3ColourThe colour of the third corner.
outlineBooleanWhether the triangle is an outline (true) or filled in (false).

 

Returns:

N/A

 

Example:

draw_triangle_colour(200, 200, 300, 200, 200, 300, c_red, c_blue, c_blue, false);

This would draw a filled isosceles right-angled triangle with red at the right angle, blue on the other two corners.