Integration 2.3j3 :

- a Outline e Aperture aggiunta gestione parametri P13, P15 e P15 (è una estensione del formato standard).
This commit is contained in:
DarioS
2021-10-22 14:24:29 +02:00
parent 408d7f0632
commit b454beca8a
2 changed files with 11 additions and 2 deletions
+9
View File
@@ -242,6 +242,9 @@ namespace ib.essetre.integration.egaltech
tw.Write( "P10:" + Constants.EIGHT_ZEROS + " ");
tw.Write( "P11:" + Constants.EIGHT_ZEROS + " ");
tw.Write( "P12:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P13:" + MultAndConvertTo8(singleFeature.processParameters[12]) + " ");
tw.Write("P14:" + MultAndConvertTo8(singleFeature.processParameters[13]) + " ");
tw.Write("P15:" + MultAndConvertTo8(singleFeature.processParameters[14]) + " ");
tw.WriteLine( " ");
// Parametri speciali Q diversi da 0, preceduti da "USERATTRIBUTE:"
for ( int j = 1; j <= 20; ++j) {
@@ -268,6 +271,9 @@ namespace ib.essetre.integration.egaltech
tw.Write( "P10:" + MultAndConvertTo8(PrevParts[1]) + " "); // x (Point on Arc)
tw.Write( "P11:" + MultAndConvertTo8(PrevParts[2]) + " "); // y (Point on Arc)
tw.Write( "P12:" + MultAndConvertTo8(PrevParts[3]) + " "); // z (Point on Arc)
tw.Write("P13:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P14:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P15:" + Constants.EIGHT_ZEROS + " ");
tw.WriteLine( " ");
flagArco = false;
}
@@ -285,6 +291,9 @@ namespace ib.essetre.integration.egaltech
tw.Write( "P10:" + Constants.EIGHT_ZEROS + " ");
tw.Write( "P11:" + Constants.EIGHT_ZEROS + " ");
tw.Write( "P12:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P13:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P14:" + Constants.EIGHT_ZEROS + " ");
tw.Write("P15:" + Constants.EIGHT_ZEROS + " ");
tw.WriteLine( " ");
}
break;
@@ -36,5 +36,5 @@ using System.Runtime.InteropServices;
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// usando l'asterisco '*' come illustrato di seguito:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.10.2")]
[assembly: AssemblyFileVersion("2.3.10.2")]
[assembly: AssemblyVersion("2.3.10.3")]
[assembly: AssemblyFileVersion("2.3.10.3")]