-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
Parry update (0.18?) #770
Merged
sebcrozet
merged 11 commits into
dimforge:master
from
Vrixyz:parry_update-simpler_traverse
Jan 8, 2025
Merged
Parry update (0.18?) #770
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0d264ec
update to parry ~main
Vrixyz d52b5a5
use traverse_depth_first
Vrixyz b24a9e0
add example to test intersection
Vrixyz 0dcad20
rely on upstream PR rather than local
Vrixyz 22a827a
re-enable profiler_ui for examples
Vrixyz d7d84ec
rely on official parry repository
Vrixyz 65b8ca0
chore: switch back to the published version of parry
sebcrozet 2e78283
chore: update changelog
sebcrozet 3066fd4
chore: remove dead code
sebcrozet 4b850a9
fix compilation of rapier3d-meshloader and rapier3d-urdf
sebcrozet ffb2be7
chore: cargo fmt
sebcrozet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add example to test intersection
- Loading branch information
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
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
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,66 @@ | ||
use rapier2d::prelude::*; | ||
use rapier_testbed2d::Testbed; | ||
|
||
pub fn init_world(testbed: &mut Testbed) { | ||
/* | ||
* World | ||
*/ | ||
let mut bodies = RigidBodySet::new(); | ||
let mut colliders = ColliderSet::new(); | ||
let impulse_joints = ImpulseJointSet::new(); | ||
let multibody_joints = MultibodyJointSet::new(); | ||
|
||
let rad = 1.0; | ||
let collider = ColliderBuilder::ball(rad); | ||
|
||
let count = 100; | ||
for x in 0..count { | ||
for y in 0..count { | ||
let rigid_body = RigidBodyBuilder::fixed().translation(vector![ | ||
(x as f32 - count as f32 / 2.0) * rad * 3.0, | ||
(y as f32 - count as f32 / 2.0) * rad * 3.0 | ||
]); | ||
let handle = bodies.insert(rigid_body); | ||
colliders.insert_with_parent(collider.clone(), handle, &mut bodies); | ||
testbed.set_initial_body_color( | ||
handle, | ||
[ | ||
x as f32 / count as f32, | ||
(count - y) as f32 / count as f32, | ||
0.5, | ||
], | ||
); | ||
} | ||
} | ||
|
||
/* | ||
* Set up the testbed. | ||
*/ | ||
testbed.set_world(bodies, colliders, impulse_joints, multibody_joints); | ||
testbed.look_at(point![0.0, 0.0], 50.0); | ||
|
||
testbed.add_callback(move |graphics, physics, _, run| { | ||
let slow_time = run.timestep_id as f32 / 3.0; | ||
let intersection = physics.query_pipeline.intersection_with_shape( | ||
&physics.bodies, | ||
&physics.colliders, | ||
&Isometry::translation(slow_time.cos() * 10.0, slow_time.sin() * 10.0), | ||
&Ball::new(rad / 2.0), | ||
QueryFilter::default(), | ||
); | ||
|
||
if let Some(graphics) = graphics { | ||
for (handle, _) in physics.bodies.iter() { | ||
graphics.set_body_color(handle, [0.5, 0.5, 0.5]); | ||
} | ||
if let Some(intersection) = intersection { | ||
let collider = physics.colliders.get(intersection).unwrap(); | ||
let body_handle = collider.parent().unwrap(); | ||
|
||
graphics.set_body_color(body_handle, [1.0, 0.0, 0.0]); | ||
} | ||
} | ||
|
||
//println!("intersection: {:?}", intersection); | ||
}); | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this feature change name is to avoid naming a feature the same as a dependency, + better represent what this does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not entirely sure, but I encountered problems with enabling
profiling/profile-with-tracy
without that change (because you cannot profile with 2 backends (puffin+tracy)), I imagine that enabledprofiling
too, so that feature name change would have fixed it.