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