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

22 lines
396 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 RotateTransform3D
{
public RotateTransform3D(Device device) : base(IntPtr.Zero)
{
device.CreateRotateTransform3D(this);
}
public RotateTransform3D(Device2 device)
: base(IntPtr.Zero)
{
device.CreateRotateTransform3D(this);
}
}
}