-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdb4dfa
commit 281d7b9
Showing
4 changed files
with
56 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
_______ | ||
____ /´ ____/\ | ||
__ ______ _____ / /\_ _ ______ _____ ____/ /_/___/\ __ _____ ______ | ||
==/ ´ ____/ __ \ ____/ ´ ____/ __ ` __ ___, /==/ ´ ___/ __ \ | ||
==/ /´=/ ______/ /==/ /´=/ /==/ /=/ /=/ /==/ /´=/ ______/\ | ||
==/ /==/ /____/ /__/ /==/ /__/ /=/ /=/ /__/ /==/ /______\/ | ||
==/___/ ==\_______/\______/__/ ==\________,´_/ /==\______/__/ ==\________/\ | ||
==\___\/ ==\______\/\_____\__\/ ==\______/_____,´ /==\_____\___\/==\_______\/ | ||
\_____\,´ | ||
|
||
Core functionality of the `retrofire` project. | ||
|
||
Includes a math library with strongly typed vectors, matrices, colors, and | ||
angles; basic geometry primitives; a software 3D renderer with customizable | ||
shaders; with more to come. | ||
|
||
|
||
============================== Crate features ================================ | ||
|
||
* std: | ||
Makes available items requiring I/O, timekeeping, or any floating-point | ||
functions not included in `core`. In particular this means trigonometric | ||
and transcendental functions. If this feature is disabled, the crate only | ||
depends on `alloc`. | ||
|
||
* libm: | ||
Provides software implementations of floating-point functions via the | ||
`libm` crate (https://crates.io/crates/libm). | ||
|
||
* `mm` | ||
Provides fast approximate implementations of floating-point functions | ||
via the `micromath` crate (https://crates.io/crates/micromath). | ||
|
||
All features are disabled by default. | ||
|
||
|
||
================================== License =================================== | ||
|
||
Copyright 2020-2024 Johannes Dahlström. retrofire is licensed under either of: | ||
|
||
* Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) | ||
|
||
* MIT license (http://opensource.org/licenses/MIT) | ||
|
||
at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submit- | ||
ted for inclusion in the work by you, as defined in the Apache-2.0 license, | ||
shall be dual licensed as above, without any additional terms or conditions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters