mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 10:42:00 +08:00
32 lines
423 B
C#
32 lines
423 B
C#
![]() |
using CPF.Mac.ObjCRuntime;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreImage
|
||
|
{
|
||
|
[Since(6, 0)]
|
||
|
public class CIVortexDistortion : CIDistortionFilter
|
||
|
{
|
||
|
public float Angle
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return GetFloat("inputAngle");
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
SetFloat("inputAngle", value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public CIVortexDistortion()
|
||
|
: base("CIVortexDistortion")
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CIVortexDistortion(IntPtr handle)
|
||
|
: base(handle)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|