/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkQuads_DEFINED #define SkQuads_DEFINED /** * Utilities for dealing with quadratic formulas with one variable: * f(t) = A*t^2 + B*t + C */ class SkQuads { … }; #endif