mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
These two were called by Discord while loading: - float getTotalLength(); - DOMPoint getPointAtLength(float distance);
10 lines
202 B
Plaintext
10 lines
202 B
Plaintext
#import <Geometry/DOMPoint.idl>
|
|
#import <SVG/SVGGraphicsElement.idl>
|
|
|
|
interface SVGGeometryElement : SVGGraphicsElement {
|
|
|
|
float getTotalLength();
|
|
DOMPoint getPointAtLength(float distance);
|
|
|
|
};
|