1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:37:35 +00:00

LibWeb: Implement CSS sin()

This commit is contained in:
stelar7 2023-05-27 23:50:33 +02:00 committed by Sam Atkins
parent ba7af82c5c
commit c73f476915
6 changed files with 125 additions and 0 deletions

View file

@ -28,7 +28,9 @@ public:
Angle percentage_of(Percentage const&) const;
ErrorOr<String> to_string() const;
double to_degrees() const;
double to_radians() const;
Type type() const { return m_type; }
double raw_value() const { return m_value; }