agrobot_base/Exemplos/SharpDX-master/Source/SharpDX.DirectComposition/RotateTransform.cs

22 lines
386 B
C#
Raw Normal View History

2023-08-31 11:50:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpDX.DirectComposition
{
partial class RotateTransform
{
public RotateTransform(Device device) : base(IntPtr.Zero)
{
device.CreateRotateTransform(this);
}
public RotateTransform(Device2 device)
: base(IntPtr.Zero)
{
device.CreateRotateTransform(this);
}
}
}