summaryrefslogtreecommitdiffstats
path: root/toolkit/components/uniffi-fixture-external-types/src/lib.rs
blob: 2d12332312bce0d25f84fd9aae212b8c63925281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use uniffi_geometry::{Line, Point};

pub fn gradient(value: Option<Line>) -> f64 {
    match value {
        None => 0.0,
        Some(value) => uniffi_geometry::gradient(value),
    }
}

pub fn intersection(ln1: Line, ln2: Line) -> Option<Point> {
    uniffi_geometry::intersection(ln1, ln2)
}

include!(concat!(env!("OUT_DIR"), "/external-types.uniffi.rs"));