Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SurfaceVertex #1048

Merged
merged 24 commits into from
Sep 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactor
The purpose of this change is to make a following change smaller.
hannobraun committed Sep 6, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 588b31be9ace2b43c9ff1de6cb2b5c23f908cd73
4 changes: 3 additions & 1 deletion crates/fj-kernel/src/algorithms/validate/mod.rs
Original file line number Diff line number Diff line change
@@ -184,6 +184,8 @@ mod tests {

#[test]
fn coherence_edge() {
let surface = Surface::xy_plane();

let points_surface = [[0., 0.], [1., 0.]];
let points_global = [[0., 0., 0.], [1., 0., 0.]];

@@ -192,7 +194,7 @@ mod tests {
let curve_global = GlobalCurve::from_kind(
CurveKind::line_from_points(points_global),
);
Curve::new(Surface::xy_plane(), curve_local, curve_global)
Curve::new(surface, curve_local, curve_global)
};

let [a_global, b_global] =