CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2007
    Location
    Bangalore,India
    Posts
    164

    Smile Bottom view isometric view.

    This is my topview

    rot[0] = 0.0f;
    rot[1] = 0.0f;
    rot[2] = 0.0f;

    then what will be my bottom view isometric view.

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,398

    Re: Bottom view isometric view.

    Please, define "topview" and "bottom view".
    It would be also useful to know what
    Code:
    rot[i]
    is.
    Victor Nijegorodov

  3. #3
    Join Date
    Sep 2007
    Location
    Bangalore,India
    Posts
    164

    Re: Bottom view isometric view.

    with no angular variation comes my topview of the model. xy view.
    i.e
    rot[0]=0.0f;
    rot[1]=0.0f;
    rot[2]=0.0f;


    How can i capture the bottom view.

  4. #4
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,398

    Re: Bottom view isometric view.

    Well, if you don't want to explain your problem don't expect any useful help!
    Victor Nijegorodov

  5. #5
    Join Date
    Sep 2007
    Location
    Bangalore,India
    Posts
    164

    Re: Bottom view isometric view.

    see i am using orthographic projection. I have to implement top view and bottom viwe for my model. how can i accomplish that. With oither software I cam to know that the top view is

    Code:
    rot[0] = 0.0f;
    rot[1] = 0.0f;
    rot[2] = 0.0f;
    where rot[0], rot[1], and rot[2] are rotation about x , y and z axis. Now if it is the top view then what should be my bottom view. I need to implement that. Please help me. thannks victor for your coments. Let me know if its not clear !. Thanks Sujan

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured