Integration 2.3g2 :

- gestione PosY per pareti a layer.
This commit is contained in:
DarioS
2021-07-12 16:02:59 +02:00
parent 87407b9216
commit d8d98fe8ae
3 changed files with 8 additions and 2 deletions
+4
View File
@@ -78,6 +78,9 @@ namespace ib.essetre.integration.egaltech
string posX = singlePart.x.ToString( "0.00", System.Globalization.CultureInfo.InvariantCulture) ;
tw.WriteLine( Constants.USERATTRIBUTE + "\"POSX\":" + "\"" + posX + "\"") ;
string posY = singlePart.y.ToString( "0.00", System.Globalization.CultureInfo.InvariantCulture) ;
tw.WriteLine( Constants.USERATTRIBUTE + "\"POSY\":" + "\"" + posY + "\"") ;
string posZ = singlePart.z.ToString( "0.00", System.Globalization.CultureInfo.InvariantCulture) ;
tw.WriteLine( Constants.USERATTRIBUTE + "\"POSZ\":" + "\"" + posZ + "\"") ;
@@ -485,6 +488,7 @@ namespace ib.essetre.integration.egaltech
public string Type ;
public List<Feature> features ;
public double x ;
public double y ;
public double z ;
public double inverted ;
public double rotated ;
+2
View File
@@ -594,6 +594,7 @@ namespace ib.essetre.integration.egaltech
readPart.height = dRowF["height"].ToString() ;
readPart.width = dRowF["width"].ToString() ;
readPart.x = (double)dRowF["x"] ;
readPart.y = (double)dRowF["y"] ;
readPart.z = (double)dRowF["z"] ;
readPart.inverted = (double)dRowF["inverted"] ;
readPart.rotated = (double)dRowF["rotated"] ;
@@ -743,6 +744,7 @@ namespace ib.essetre.integration.egaltech
readPart.height = dRowF["height"].ToString() ;
readPart.width = dRowF["width"].ToString() ;
readPart.x = Constants.HeadOverMat ;
readPart.y = 0 ;
readPart.z = 0 ;
readPart.inverted = (double)dRowF["inverted"] ;
readPart.rotated = (double)dRowF["rotated"] ;
@@ -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.7.1")]
[assembly: AssemblyFileVersion("2.3.7.1")]
[assembly: AssemblyVersion("2.3.7.2")]
[assembly: AssemblyFileVersion("2.3.7.2")]