mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
56 lines
715 B
C#
56 lines
715 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
[Since(6, 0)]
|
|
public class CIBarsSwipeTransition : CITransitionFilter
|
|
{
|
|
public float Angle
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputAngle");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputAngle", value);
|
|
}
|
|
}
|
|
|
|
public float BarOffset
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputBarOffset");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputBarOffset", value);
|
|
}
|
|
}
|
|
|
|
public float Width
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputWidth");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputWidth", value);
|
|
}
|
|
}
|
|
|
|
public CIBarsSwipeTransition()
|
|
: base("CIBarsSwipeTransition")
|
|
{
|
|
}
|
|
|
|
public CIBarsSwipeTransition(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|