mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Format RenderApi code
This commit is contained in:
@@ -6,19 +6,19 @@
|
||||
|
||||
namespace Microsoft.Iris.Render
|
||||
{
|
||||
public sealed class BezierInterpolation : AnimationInterpolation
|
||||
{
|
||||
private float m_controlPoint1;
|
||||
private float m_controlPoint2;
|
||||
|
||||
public BezierInterpolation(float controlPoint1, float controlPoint2)
|
||||
public sealed class BezierInterpolation : AnimationInterpolation
|
||||
{
|
||||
this.m_controlPoint1 = controlPoint1;
|
||||
this.m_controlPoint2 = controlPoint2;
|
||||
private float m_controlPoint1;
|
||||
private float m_controlPoint2;
|
||||
|
||||
public BezierInterpolation(float controlPoint1, float controlPoint2)
|
||||
{
|
||||
this.m_controlPoint1 = controlPoint1;
|
||||
this.m_controlPoint2 = controlPoint2;
|
||||
}
|
||||
|
||||
internal float ControlPoint1 => this.m_controlPoint1;
|
||||
|
||||
internal float ControlPoint2 => this.m_controlPoint2;
|
||||
}
|
||||
|
||||
internal float ControlPoint1 => this.m_controlPoint1;
|
||||
|
||||
internal float ControlPoint2 => this.m_controlPoint2;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user