Files
2025-05-29 22:31:40 +03:00

17 lines
593 B
C#

using UnityEngine;
using System.Collections;
namespace Obi
{
public interface IVolumeConstraintsBatchImpl : IConstraintsBatchImpl
{
void SetVolumeConstraints(ObiNativeIntList triangles,
ObiNativeIntList firstTriangle,
ObiNativeIntList numTriangles,
ObiNativeFloatList restVolumes,
ObiNativeVector2List pressureStiffness,
ObiNativeFloatList lambdas,
int count);
}
}