mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
68 lines
841 B
C#
68 lines
841 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
[Since(6, 0)]
|
|
public class CIModTransition : CITransitionFilter
|
|
{
|
|
public float Angle
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputAngle");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputAngle", value);
|
|
}
|
|
}
|
|
|
|
public CIVector Center
|
|
{
|
|
get
|
|
{
|
|
return GetVector("inputCenter");
|
|
}
|
|
set
|
|
{
|
|
SetValue("inputCenter", value);
|
|
}
|
|
}
|
|
|
|
public float Compression
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputCompression");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputCompression", value);
|
|
}
|
|
}
|
|
|
|
public float Radius
|
|
{
|
|
get
|
|
{
|
|
return GetFloat("inputRadius");
|
|
}
|
|
set
|
|
{
|
|
SetFloat("inputRadius", value);
|
|
}
|
|
}
|
|
|
|
public CIModTransition()
|
|
: base("CIModTransition")
|
|
{
|
|
}
|
|
|
|
public CIModTransition(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|