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