| 12345678910111213141516 |
- return {
- summary = 'Different ways graphics primitives can be drawn.',
- description = [[
- Most graphics primitives can be drawn in one of two modes: a filled mode and a wireframe mode.
- ]],
- values = {
- {
- name = 'fill',
- description = 'The shape is drawn as a filled object.'
- },
- {
- name = 'line',
- description = 'The shape is drawn as a wireframe object.'
- }
- }
- }
|