Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Oct 17, 2023
1 parent 6b7098a commit 95dd855
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/value/color/space/lms.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ class LmsColorSpace extends ColorSpace {

/// Returns the cube root of the absolute value of [number] with the same sign
/// as [number].
double _cubeRootPreservingSign(double number) => math.pow(number.abs(), 1/3) * number.sign;
double _cubeRootPreservingSign(double number) =>
math.pow(number.abs(), 1 / 3) * number.sign;

@protected
double toLinear(double channel) => channel;
Expand Down

0 comments on commit 95dd855

Please sign in to comment.