vectorial/
lib.rs

1/*
2 * Copyright (c) 2025 Martin Mills <daggerbot@gmail.com>
3 * SPDX-License-Identifier: MPL-2.0
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
8 */
9
10#![no_std]
11
12mod vector;
13
14pub use vector::{Vector2, Vector3, Vector4};