add defaults for the several structs

This commit is contained in:
zhguchev
2022-01-11 14:56:26 +01:00
committed by Sébastien Crozet
parent 1608a1323e
commit 536122e080
12 changed files with 46 additions and 10 deletions

View File

@@ -7,7 +7,11 @@ use crate::math::{Point, Real};
pub struct SphericalJoint {
data: JointData,
}
impl Default for SphericalJoint{
fn default() -> Self {
SphericalJoint::new()
}
}
impl SphericalJoint {
pub fn new() -> Self {
let data =