QQ登录

只需一步,快速开始

快捷登录

登录 或者 注册 请先

UG爱好者

查看: 2519|回复: 3
打印 上一主题 下一主题

[求助] GRIP 如何导如文本里的坐标点集

[复制链接]

上等兵

Rank: 1

1

主题

20

帖子

143

积分
跳转到指定楼层
楼主
发表于 2017-11-15 18:34:42 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

GRIP 如何导如文本里的坐标点集
就是ug 里的导入 文中的点 这个功能如何用编程语言描述出来

有奖推广贴子: 

回复

使用道具 举报

六级士官

Rank: 4

5

主题

105

帖子

1264

积分
沙发
发表于 2017-12-5 01:13:49 | 只看该作者
这个可以参考nxopen自带的例子,里面有:
回复 支持 反对

使用道具 举报

六级士官

Rank: 4

5

主题

105

帖子

1264

积分
板凳
发表于 2017-12-5 01:14:19 | 只看该作者
可以参考 UG OPEN自带的例子里面:
  1. /*=============================================================================
  2. Copyright (c) 2004 UGS Corp.
  3. All rights reserved
  4. ===============================================================================
  5. File2Points.cpp

  6. Description: Contains Unigraphics entry points for the application.

  7.   
  8. =============================================================================*/

  9. #ifdef WIN32
  10. #define USE_MFC
  11. #endif

  12. #ifdef USE_MFC
  13. #include <afxdlgs.h>
  14. #include <afx.h>
  15. #endif

  16. #include <NXOpen/Session.hxx>
  17. #include <NXOpen/Part.hxx>
  18. #include <NXOpen/PartCollection.hxx>
  19. #include <NXOpen/Point.hxx>
  20. #include <NXOpen/PointCollection.hxx>

  21. #include <fstream>
  22. #ifdef USE_MFC
  23. #include <tchar.h>
  24. #endif
  25. using namespace NXOpen;
  26. using namespace std;

  27. /* Include files */
  28. #include <uf.h>
  29. #include <uf_ui.h>
  30. #include <uf_exit.h>
  31. #include <uf.h>
  32. #include <uf_exit.h>
  33. #include <uf_ui.h>

  34. #   include <sstream>
  35. #   include <iostream>
  36. using std::ostringstream;
  37. using std::endl;   
  38. using std::ends;
  39. using std::cerr;

  40. static void PrintErrorMessage( int errorCode );
  41. static void PrintErrorMessage( const char* msg );

  42. static int create_filebox(char* prompt, char* filename )
  43. {
  44.     // We could have used UF_UI_create_filebox on both Windows and Unix.
  45.     // The ONLY reason that we use MFC instead of UF_UI_create_filebox on Windows
  46.     // is for the purpose of demonstrating how MFC can be used inside an NX Open application.
  47. #ifdef USE_MFC
  48.    
  49.     const TCHAR* Filters = _T("txt files (*.txt)|*.txt|All files (*.*)|*.*||");
  50.    
  51.     // Create an Open dialog; the default file name extension is ".my".
  52.     CFileDialog fileDialog (TRUE, NULL, NULL, OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, Filters);
  53.    
  54.     UF_UI_set_prompt( prompt );
  55.     INT_PTR response = fileDialog.DoModal();
  56.    
  57.     if ( response == IDOK)
  58.     {
  59.         TCHAR* tmpFileName = (TCHAR*)(fileDialog.GetPathName().GetBuffer(fileDialog.GetPathName().GetLength()));
  60.         
  61.         USES_CONVERSION;
  62.         strcpy_s(filename, fileDialog.GetPathName().GetLength()+1,T2A(tmpFileName));
  63.     }
  64.     return response == IDOK ? UF_UI_OK : UF_UI_CANCEL;
  65. #else   
  66.     int response;
  67.     char filter[ MAX_FSPEC_BUFSIZE ] = "*.txt";
  68.     UF_UI_create_filebox( prompt,
  69.                           "Select point data file",
  70.                          filter, NULL,
  71.                          filename, &response );
  72.     return response;
  73. #endif
  74. }

  75. /*****************************************************************************
  76. **  Activation Methods
  77. *****************************************************************************/
  78. /*  Explicit Activation
  79. **      This entry point is used to activate the application explicitly, as in
  80. **      "File->Execute UG/Open->User Function..." */
  81. extern DllExport void ufusr( char *parm, int *returnCode, int rlen )
  82. {
  83.     /* Initialize the API environment */
  84.     int errorCode = UF_initialize();
  85.    
  86.     Session *theSession = Session::GetSession();
  87.    
  88.     Session::UndoMarkId markId1 = theSession->SetUndoMark(Session::MarkVisibilityVisible, "Create Points");      
  89.    
  90.     Part *workPart = theSession->Parts()->Work();
  91.     if ( workPart == NULL )
  92.         workPart = theSession->Parts()->NewDisplay("File2Points", Part::UnitsMillimeters);
  93.    
  94.     char fileName[ MAX_FSPEC_BUFSIZE ];
  95.     char prompt[] = "Select file that contains the point coordinate data";

  96.     if ( create_filebox( prompt, fileName ) == UF_UI_OK )
  97.     {
  98.         ifstream file1;
  99.         
  100.         file1.open(fileName);
  101.         
  102.         if ( !file1.is_open() )
  103.             PrintErrorMessage( "Could not open file\n" );
  104.         else
  105.         {
  106.             double x,y,z;
  107.             char c;
  108.             while(!file1.eof())
  109.             {
  110.                 file1 >> x >> c >> y >> c >> z;
  111.                 if(!file1)
  112.                 {
  113.                     PrintErrorMessage("File format error:\n   The input file does not have the expected format\n");
  114.                     break;
  115.                 }               
  116.                 NXOpen::Point3d point3d11(x,y,z);
  117.                 Point *point1;
  118.                 point1 = workPart->Points()->CreatePoint(point3d11);
  119.                 // The point is invisible when initially created
  120.                 point1->SetVisibility(NXOpen::SmartObject::VisibilityOptionVisible);
  121.                
  122.                 // Check for end of file
  123.                 file1 >> c;
  124.                 if ( !file1.eof() )
  125.                     file1.unget();
  126.             }
  127.             file1.close();
  128.             file1.clear();
  129.         }
  130.         
  131.         /* To save work part using NXOpen automation APIs */
  132.         /*NXOpen::PartSaveStatus *partSaveStatus;
  133.          part1->Save(NXOpen::Part::SaveComponentsTrue, NXOpen::Part::CloseAfterSaveTrue, &partSaveStatus);*/
  134.         
  135.         int nErrs = theSession->UpdateManager()->DoUpdate(markId1);
  136.         if (nErrs > 0)
  137.             PrintErrorMessage( "Error occured during update.\n" );
  138.     }
  139.    
  140.     /* Terminate the API environment */
  141.     errorCode = UF_terminate();
  142.    
  143.     /* Print out any error messages */
  144.     PrintErrorMessage( errorCode );
  145. }

  146. /*****************************************************************************
  147. **  Utilities
  148. *****************************************************************************/

  149. /* Unload Handler
  150. **     This function specifies when to unload your application from Unigraphics.
  151. **     If your application registers a callback (from a MenuScript item or a
  152. **     User Defined Object for example), this function MUST return
  153. **     "UF_UNLOAD_UG_TERMINATE". */
  154. extern int ufusr_ask_unload( void )
  155. {
  156.     return(UF_UNLOAD_IMMEDIATELY);
  157. }
  158. /* PrintErrorMessage
  159. **
  160. **     Prints error messages to standard error and the Unigraphics status
  161. **     line.
  162. */
  163. static void PrintErrorMessage( int errorCode )
  164. {
  165.     if ( 0 != errorCode )
  166.     {
  167.         /* Retrieve the associated error message  */
  168.         char message[133];
  169.         UF_get_fail_message( errorCode, message );
  170.         
  171.         /* Print out the message  */
  172.         UF_UI_set_status( message );
  173.         /* Construct a buffer to hold the text. */
  174.         ostringstream error_message;
  175.         
  176.         /* Initialize the buffer with the required text.  */
  177.         error_message << "Error:" << endl
  178.         << message
  179.         << endl << endl << ends;
  180.         
  181.         /* Write the message to standard error
  182.          errtxt necessary, as the buffer cannot be passed
  183.          directly into PrintErrorMessage */
  184.         std::string errtxt = error_message.str();
  185.         PrintErrorMessage(errtxt.c_str());
  186.     }
  187. }

  188. static void PrintErrorMessage( const char* msg )
  189. {
  190. #ifdef WIN32
  191.     static bool consoleInitialized = false;
  192.     if ( !consoleInitialized )
  193.     {
  194.         AllocConsole();
  195.         FILE *stream;
  196.         freopen_s(&stream,"conout$", "w", stdout);
  197.         freopen_s(&stream,"conout$", "w", stderr);
  198.         consoleInitialized = true;
  199.     }
  200. #endif
  201.     cerr << msg;
  202. }
复制代码
回复 支持 反对

使用道具 举报

六级士官

Rank: 4

5

主题

105

帖子

1264

积分
地板
发表于 2017-12-5 01:16:58 | 只看该作者

例子路径

自己看UG带的例子

UG自带二次开发例子路径.jpg (168.65 KB, 下载次数: 23)

UG自带二次开发例子路径.jpg
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

 
 
QQ:1359218528
工作时间:
9:00-17:00
 
微信公众号
手机APP
机械社区
微信小程序

手机版|UG爱好者论坛 ( 京ICP备10217105号-2 )    论坛管理员QQ:1359218528

本站信息均由会员发表,不代表本网站立场,如侵犯了您的权利请联系管理员,邮箱:1359218528@qq.com  

Powered by UG爱好者 X3.2  © 2001-2014 Comsenz Inc. GMT+8, 2024-5-1 03:48

返回顶部