diff options
| author | DasEtwas <18222134+DasEtwas@users.noreply.github.com> | 2021-05-06 22:39:55 +0200 |
|---|---|---|
| committer | DasEtwas <18222134+DasEtwas@users.noreply.github.com> | 2021-05-06 22:39:55 +0200 |
| commit | 810c39d427d277a601d517e7119c6b67e6c33376 (patch) | |
| tree | a80b2803e03717aa718a7b0057646743b4c803b1 /src | |
| parent | 2817fb0acb7a29626c32bffa3b0f564cc4b909a1 (diff) | |
| download | rapier-810c39d427d277a601d517e7119c6b67e6c33376.tar.gz rapier-810c39d427d277a601d517e7119c6b67e6c33376.tar.bz2 rapier-810c39d427d277a601d517e7119c6b67e6c33376.zip | |
Remove Copy from RigidBodyBuilder
Diffstat (limited to 'src')
| -rw-r--r-- | src/dynamics/rigid_body.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynamics/rigid_body.rs b/src/dynamics/rigid_body.rs index d35fc54..086f23d 100644 --- a/src/dynamics/rigid_body.rs +++ b/src/dynamics/rigid_body.rs @@ -564,7 +564,7 @@ impl RigidBody { } /// A builder for rigid-bodies. -#[derive(Copy, Clone, Debug, PartialEq)] +#[derive(Clone, Debug, PartialEq)] #[must_use = "Builder functions return the updated builder"] pub struct RigidBodyBuilder { /// The initial position of the rigid-body to be built. |
