mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-18 13:26:45 +08:00
20 lines
307 B
C#
20 lines
307 B
C#
![]() |
using CPF.Mac.ObjCRuntime;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreImage
|
||
|
{
|
||
|
[Since(6, 0)]
|
||
|
public class CIEightfoldReflectedTile : CITileFilter
|
||
|
{
|
||
|
public CIEightfoldReflectedTile()
|
||
|
: base("CIEightfoldReflectedTile")
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CIEightfoldReflectedTile(IntPtr handle)
|
||
|
: base(handle)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|