summaryrefslogtreecommitdiff
path: root/doc/classes/Geometry2D.xml
AgeCommit message (Collapse)Author
2022-08-23Replace Array return types with TypedArray 2kobewi
2022-08-12[doc] Use "param" instead of "code" to refer to parameters (6)Andy Maloney
2022-08-08Rename the argument tag to param in XML documentationYuri Sizov
2022-08-03Bring back Geometry2D.segment_intersects_circleHakim
2022-07-27i18n: Sync classref translations with WeblateRémi Verschelde
(cherry picked from commit 516d6b6bad68d506391a4262ba40cbceeea8be22)
2022-05-29Change instances of "returns an empty Variant" to "returns null" in docsHugo Locurcio
While "returns an empty Variant" technically valid (it's constructed as `Variant()` in C++), "returns null" is more intuitive to users.
2022-02-22Merge pull request #57664 from skyace65/TriangulateInfoRémi Verschelde
Add more information on triangulate polygon
2022-02-15Add an XML schema for documentationHugo Locurcio
This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
2022-02-05Add more information on triangulate polygonskyace65
2021-07-30doc: Use self-closing tags for `return` and `argument`Rémi Verschelde
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
2021-04-17changed description of `merge_polygons`RoniPerson
Clarified that the `merge_polygons` method can produce multiple holes.
2020-12-12Fixed Geometry2D::get_closest_points_between_segments docsMarcus Brummer
2020-11-25Docs: Port Code Examples to C# (F, G, H, I, J, K, L)HaSa1002
Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
2020-11-04doc: Sync classref with current source + fixup some bindingsRémi Verschelde
Includes various changes triggered by the refactoring of method bindings.
2020-07-01Clarify `Geometry.offset_polygon_2d` regarding vertices translationAndrii Doroshenko (Xrayez)
The method is used to either inflate or deflate a polygon. For translating/transforming a polygon, use `Transform2D.xform`.
2020-05-27Split `Geometry` singleton into `Geometry2D` and `Geometry3D`Andrii Doroshenko (Xrayez)
Extra `_2d` suffixes are removed from 2D methods accoringly.