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