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