| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- return {
- summary = 'Get a list of points on the Curve.',
- description = [[
- Returns a list of points on the Curve. The number of points can be specified to get a more or
- less detailed representation, and it is also possible to render a subsection of the Curve.
- ]],
- arguments = {
- {
- name = 'n',
- type = 'number',
- default = '32',
- description = 'The number of points to use.'
- },
- {
- name = 't1',
- type = 'number',
- default = '0',
- description = 'How far along the curve to start rendering.'
- },
- {
- name = 't2',
- type = 'number',
- default = '1',
- description = 'How far along the curve to stop rendering.'
- }
- },
- returns = {
- {
- name = 't',
- type = 'table',
- description = 'A (flat) table of 3D points along the curve.'
- }
- },
- notes = [[
- This function will always return 2 points if the Curve is a line with only 2 control points.
- ]],
- related = {
- 'Curve:evaluate',
- 'Curve:slice',
- 'lovr.graphics.points',
- 'lovr.graphics.line'
- }
- }
|