Hide Table of Contents

Dynamically Rotate Model View Example (C++ COM)

This example shows how to dynamically rotate a model view. It also shows you how to speed up the process by using the StartDynamics and StopDynamics calls.

 

RotateTheView(ISldWorks* m_pSldWorks)

{

 LPMODELDOC2 p_ModelDoc = NULL;

 LPMODELVIEW p_ModelView = NULL;

 HRESULT res = S_OK;

 // Retrieve the model document pointer

 res = m_pSldWorks->get_IActiveDoc2( &p_ModelDoc );  

 if( res != S_OK || p_ModelDoc == NULL )

  return;

  // Get the active view pointer

 res = p_ModelDoc->get_IActiveView(&p_ModelView);  

 if( res != S_OK || p_ModelView == NULL )

 {

  p_ModelDoc->Release();

  return;

 }

 int i;

 // Prepare view for rotation

 p_ModelView->StartDynamics();      

 for (i = 1; i < 100; i++)

 {

   p_ModelDoc->ViewRotateplusy();

 }

 // End dynamic rotation mode

 p_ModelView->StopDynamics();      

 // Repaint the screen

 p_ModelDoc->GraphicsRedraw2();      

 //Clean up

 p_ModelView->Release();

 p_ModelDoc->Release();

}



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Dynamic View Rotation Example (C++ COM)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2012 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.