17 lines
231 B
C#
17 lines
231 B
C#
using System;
|
|
|
|
namespace PhysicsTools
|
|
{
|
|
[Serializable]
|
|
public class SegmentPropertiesCylinder : SegmentPropertiesBase
|
|
{
|
|
public float radius;
|
|
|
|
public SegmentPropertiesCylinder()
|
|
{
|
|
length = 1f;
|
|
radius = 0.1f;
|
|
}
|
|
}
|
|
}
|