Take CATIA image and rotate in X 180º
Take CATIA image and rotate in X 180º
(OP)
Hello,
I need to take an image of a CATPart, and then rotate the part (Only the view to see the oposite side of the part)in X 180º to take another image.
I now how to take the image. What I don't now, is how to rotate the model to rotate 180º in X.
I need to take an image of a CATPart, and then rotate the part (Only the view to see the oposite side of the part)in X 180º to take another image.
I now how to take the image. What I don't now, is how to rotate the model to rotate 180º in X.
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...





RE: Take CATIA image and rotate in X 180º
Something like iso and counter iso view ?
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
RE: Take CATIA image and rotate in X 180º
You can find it under View>Command list, or add the command to a new or existing toolbar.
RE: Take CATIA image and rotate in X 180º
Yes, that's what i need.
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...
RE: Take CATIA image and rotate in X 180º
But Reverse View, it looks only to rotate the part only in Z axis. I need in X axis.
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...
RE: Take CATIA image and rotate in X 180º
Search in the chm help file for "engineering view catscript" and modify it according to your needs. I was interested only in counter iso view
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
I think i found the one that you are talking.
I had inserted it in a vbscript and it returns an error...
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...
RE: Take CATIA image and rotate in X 180º
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
But still have some errors..
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...
RE: Take CATIA image and rotate in X 180º
I didn't had the need time to see this again. I hope that in the next few days I will have some time to do and try this. But can you share the code that you used in your previous images?
Tiago Figueiredo
Tooling Engineer
Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...
RE: Take CATIA image and rotate in X 180º
In the original DS DMUInfEngineeringView.CATScript you need to change code
StdDirection(Custom, Sight, X) = -1./ Sqr(2)
StdDirection(Custom, Sight, Y) = -1./ Sqr(2)
StdDirection(Custom, Sight, Z) = 0.
StdDirection(Custom, Up , X) = 0.
StdDirection(Custom, Up , Y) = 0.
StdDirection(Custom, Up , Z) = 1.
' Engineering view do display
Dim iIndView As Integer
iIndView = Custom ' <==== To be changed on the different macros ====
with this
StdDirection(Custom, Sight, X) = 1./ Sqr(3)
StdDirection(Custom, Sight, Y) = 1./ Sqr(3)
StdDirection(Custom, Sight, Z) = -1./ Sqr(3)
StdDirection(Custom, Up , X) = 1./ Sqr(6)
StdDirection(Custom, Up , Y) = 1./ Sqr(6)
StdDirection(Custom, Up , Z) = 2./ Sqr(6)
' Engineering view do display
Dim iIndView As Integer
'~ iIndView = Custom ' <==== To be changed on the different macros ==== this is original line, you have to change Custom with what you want as DS declare
iIndView = 7 ' <==== To be changed on the different macros ====
Or see if CATIA.StartCommand ("ReverseView") is more suitable for you.
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
CAD 2015
RE: Take CATIA image and rotate in X 180º
Type in Power Input c:ReverseView
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
CAD 2015
RE: Take CATIA image and rotate in X 180º
CAD 2015
RE: Take CATIA image and rotate in X 180º
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
I did try that, but it doesn't allow me to drag/drop the icon in the toolbar......
Maybe the IT settings doesn't allow that!...
How about the other option (User Alias)? It the first time I see that, can you help me out in this matter, please?
Thanks!
CAD 2015
RE: Take CATIA image and rotate in X 180º
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
CAD 2015
RE: Take CATIA image and rotate in X 180º
I am not happy with its location...
CAD 2015
RE: Take CATIA image and rotate in X 180º
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Take CATIA image and rotate in X 180º
Thanks for your time, Fernando!
CAD 2015