Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit e9c62e7

Browse files
authored
do not print in _computePixelDensity (#22257)
1 parent bd19181 commit e9c62e7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/web_ui/lib/src/engine/html/picture.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,6 @@ double _computePixelDensity(Matrix4? transform, double width, double height) {
649649
double wp = 1.0 / ((m[3] * x) + (m[7] * y) + m[15]);
650650
double xp = ((m[0] * x) + (m[4] * y) + m[12]) * wp;
651651
double yp = ((m[1] * x) + (m[5] * y) + m[13]) * wp;
652-
print('$xp,$yp');
653652
minX = math.min(minX, xp);
654653
maxX = math.max(maxX, xp);
655654
minY = math.min(minY, yp);
@@ -658,7 +657,6 @@ double _computePixelDensity(Matrix4? transform, double width, double height) {
658657
wp = 1.0 / ((m[3] * x) + (m[7] * y) + m[15]);
659658
xp = ((m[0] * x) + (m[4] * y) + m[12]) * wp;
660659
yp = ((m[1] * x) + (m[5] * y) + m[13]) * wp;
661-
print('$xp,$yp');
662660
minX = math.min(minX, xp);
663661
maxX = math.max(maxX, xp);
664662
minY = math.min(minY, yp);
@@ -668,7 +666,6 @@ double _computePixelDensity(Matrix4? transform, double width, double height) {
668666
wp = 1.0 / ((m[3] * x) + (m[7] * y) + m[15]);
669667
xp = ((m[0] * x) + (m[4] * y) + m[12]) * wp;
670668
yp = ((m[1] * x) + (m[5] * y) + m[13]) * wp;
671-
print('$xp,$yp');
672669
minX = math.min(minX, xp);
673670
maxX = math.max(maxX, xp);
674671
minY = math.min(minY, yp);

0 commit comments

Comments
 (0)