TestEIn 1.6w2 :
- aggiornata interfaccia verso codice nativo.
This commit is contained in:
@@ -6892,6 +6892,20 @@ Public Function EgtMoveRawPart(nRawId As Integer, ByRef vtMove As Vector3d) As B
|
||||
End If
|
||||
End Function
|
||||
|
||||
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtRotateRawPart"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtRotateRawPart_32(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
|
||||
End Function
|
||||
<DllImport(EgtIntDll64, CharSet:=CharSet.Unicode, EntryPoint:="EgtRotateRawPart"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtRotateRawPart_64(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
|
||||
End Function
|
||||
Public Function EgtRotateRawPart(nRawId As Integer, ByRef vtAx As Vector3d, dAngDeg As Double) As Boolean
|
||||
If IntPtr.Size = 4 Then
|
||||
Return EgtRotateRawPart_32(nRawId, vtAx, dAngDeg)
|
||||
Else
|
||||
Return EgtRotateRawPart_64(nRawId, vtAx, dAngDeg)
|
||||
End If
|
||||
End Function
|
||||
|
||||
<DllImport(EgtIntDll32, CharSet:=CharSet.Unicode, EntryPoint:="EgtSplitFlatRawPartWithMachinings"), SuppressUnmanagedCodeSecurity()>
|
||||
Private Function EgtSplitFlatRawPartWithMachinings_32(nRawId As Integer, nNumMch As Integer, nMchId() As Integer) As Integer
|
||||
End Function
|
||||
|
||||
@@ -46,5 +46,5 @@ Imports System.Runtime.InteropServices
|
||||
' utilizzando l'asterisco (*) come descritto di seguito:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.6.23.1")>
|
||||
<Assembly: AssemblyFileVersion("1.6.23.1")>
|
||||
<Assembly: AssemblyVersion("1.6.23.2")>
|
||||
<Assembly: AssemblyFileVersion("1.6.23.2")>
|
||||
|
||||
Reference in New Issue
Block a user