File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
ShapeEngine/Core/CollisionSystem Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ public CollisionPoints(int capacity = 0) : base(capacity)
1515 }
1616 public CollisionPoints ( params CollisionPoint [ ] points ) : base ( points . Length ) { AddRange ( points ) ; }
1717 public CollisionPoints ( IEnumerable < CollisionPoint > points , int count ) : base ( count ) { AddRange ( points ) ; }
18+ public CollisionPoints ( List < CollisionPoint > points ) : base ( points . Count ) { AddRange ( points ) ; }
1819
1920 public CollisionPoints ( CollisionPoints other ) : base ( other . Count )
2021 {
@@ -536,7 +537,7 @@ public bool Equals(CollisionPoints? other)
536537
537538 #region CollisionPoint
538539
539- public CollisionPoint GetAverageCollisionPoint ( )
540+ public CollisionPoint GetCombinedCollisionPoint ( )
540541 {
541542 var avgPoint = new Vector2 ( ) ;
542543 var avgNormal = new Vector2 ( ) ;
You can’t perform that action at this time.
0 commit comments