1cb93a386Sopenharmony_ci// Copyright 2020 Google LLC. 2cb93a386Sopenharmony_ci// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 3cb93a386Sopenharmony_ci#include "tools/fiddle/examples.h" 4cb93a386Sopenharmony_ciREG_FIDDLE(homogeneous, 256, 256, false, 3) { 5cb93a386Sopenharmony_civoid draw(SkCanvas* canvas) { 6cb93a386Sopenharmony_ci SkPoint3 src[] = {{3, 3, 1}, {8, 2, 2}, {5, 0, 4}, {0, 1, 3}, 7cb93a386Sopenharmony_ci {3, 7, 1}, {8, 6, 2}, {5, 4, 4}, {0, 5, 3}}; 8cb93a386Sopenharmony_ci int lines[] = {0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7}; 9cb93a386Sopenharmony_ci constexpr int count = SK_ARRAY_COUNT(src); 10cb93a386Sopenharmony_ci auto debugster = [=](SkPoint3 src[]) -> void { 11cb93a386Sopenharmony_ci for (size_t i = 0; i < SK_ARRAY_COUNT(lines); i += 2) { 12cb93a386Sopenharmony_ci const SkPoint3& s = src[lines[i]]; 13cb93a386Sopenharmony_ci const SkPoint3& e = src[lines[i + 1]]; 14cb93a386Sopenharmony_ci SkPaint paint; 15cb93a386Sopenharmony_ci paint.setARGB(77, 23, 99, 154); 16cb93a386Sopenharmony_ci canvas->drawLine(s.fX / s.fZ, s.fY / s.fZ, e.fX / e.fZ, e.fY / e.fZ, paint); 17cb93a386Sopenharmony_ci } 18cb93a386Sopenharmony_ci }; 19cb93a386Sopenharmony_ci canvas->save(); 20cb93a386Sopenharmony_ci canvas->translate(5, 5); 21cb93a386Sopenharmony_ci canvas->scale(15, 15); 22cb93a386Sopenharmony_ci debugster(src); 23cb93a386Sopenharmony_ci canvas->restore(); 24cb93a386Sopenharmony_ci canvas->translate(128, 128); 25cb93a386Sopenharmony_ci SkMatrix matrix; 26cb93a386Sopenharmony_ci matrix.setAll(15, 0, 0, 0, 15, 0, -0.08, 0.04, 1); 27cb93a386Sopenharmony_ci matrix.mapHomogeneousPoints(src, src, count); 28cb93a386Sopenharmony_ci debugster(src); 29cb93a386Sopenharmony_ci} 30cb93a386Sopenharmony_ci} // END FIDDLE 31