-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
e79106a
commit c7d8a3d
Showing
4 changed files
with
74 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pub mod cache; | ||
pub mod curves; | ||
pub mod points; | ||
pub mod surfaces; | ||
|
||
pub use self::{ | ||
|
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,43 @@ | ||
// TASK: Un-suppress warning. | ||
#![allow(unused)] | ||
|
||
use super::Handle; | ||
|
||
// TASK: Document. | ||
pub struct Point1D { | ||
// TASK: Document. | ||
pub s: f64, | ||
|
||
// TASK: Document. | ||
pub handle: Handle<Point>, | ||
} | ||
|
||
// TASK: Document. | ||
pub struct Point2D { | ||
// TASK: Document. | ||
pub u: f64, | ||
|
||
// TASK: Document. | ||
pub v: f64, | ||
|
||
// TASK: Document. | ||
pub handle: Handle<Point>, | ||
} | ||
|
||
// TASK: Document. | ||
pub struct Point3D { | ||
// TASK: Document. | ||
pub x: f64, | ||
|
||
// TASK: Document. | ||
pub y: f64, | ||
|
||
// TASK: Document. | ||
pub z: f64, | ||
|
||
// TASK: Document. | ||
pub handle: Handle<Point>, | ||
} | ||
|
||
// TASK: Document. | ||
pub struct Point; |
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