Hi guru
As topic title, is it possible to call out the COG and weight value automatically on isometric drawing?
I don't see those value on Attribute Frame texts form:
Hi guru
As topic title, is it possible to call out the COG and weight value automatically on isometric drawing?
I don't see those value on Attribute Frame texts form:
If you cannot find them via the user interface then you need to add them manually into the options-file, both getting the attribute value and placing it onto the isometric
Something like this:
var !dryWeightValue nwei('dry') of pipe
TextPosition '$!dryWeightValue' X 140 Y 30 Char Height 5
Hi Henrik. How about COG value? is it possible to add x,y,z coordinate into drawing?
Hi Henrik. How about COG value? is it possible to add x,y,z coordinate into drawing?
Henrik Landstrom Hi Henrik
How to convert unit from (E,N,U) to (X,Y,Z) for COG value?
I added two command below to add cog value on isometric drawing:
var !cog GCOF OF PIPE
TextPosition '$!cog' X 116mm Y 21mm CharHeight 1.8mm
var !cog GCOF OF PIPE !format = object format() !format.Enu = false !format.OriginExp = object block('WORLD') !format.Label = 'mm' !p = object position(!cog) !cogFormated = !p.string(!format) TextPosition '$!cogFormated' X 116mm Y 21mm CharHeight 1.8mm
It works perfectly. Thank a ton Henrik Landstrom