找回密码 注册 QQ登录
一站式解决方案

iCAx开思网

CAD/CAM/CAE/设计/模具 高清视频【积分说明】如何快速获得积分?快速3D打印 手板模型CNC加工服务在线3D打印服务,上传模型,自动报价
查看: 18031|回复: 17
打印 上一主题 下一主题

【求助】三元机测量数据如何导入ug中?

[复制链接]
跳转到指定楼层
1
发表于 2003-8-11 09:09:05 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
我在做ug二次开发过程中,需要把三坐标测量机测量的数据文件读入程序中,根据其中的数据生成点。但如何把之间的接口该如何解决呢?请高手指点!!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
2
发表于 2003-8-12 07:49:26 | 只看该作者
斑竹呢?
3
发表于 2003-8-12 09:38:38 | 只看该作者
要看你的三坐标测量机测量的数据文件的格式能否满足UG输入的要求,ug有一个功能,根据点云构面。你可以看看该功能的说明。
4
发表于 2003-8-12 10:06:53 | 只看该作者
若是三坐标测量机输出格式是电子表格形式,具体如何读取其中的数据?能否清楚的讲解一下?谢谢!!
5
发表于 2003-8-12 10:34:31 | 只看该作者
1. Export the point to csv format file,and make a program to read the csv file.
  
2.Create a spline from point file, then create spline define point
6
发表于 2003-8-12 15:03:19 | 只看该作者
贴个文件看看
7
发表于 2003-8-13 08:04:00 | 只看该作者
同意楼上!
spline能否给个例子?
谢谢!
8
发表于 2003-8-13 11:22:53 | 只看该作者
If there is no error in your csv file, use "fscanf" function.
This function can read formatted string.
  
Sorry, I am in training. So no examples, no Chinese IME, and no Opera Browser.
9
发表于 2003-8-13 11:51:16 | 只看该作者
thank you!spline!
10
发表于 2003-8-24 08:49:59 | 只看该作者
我做了一个读取csy file的小程序,在tc下编译,运行都完全正确。程序如下:
include "stdio.h"
main()
{
  FILE *fp;
  int i,j;
  double points[10][3];
  if((fp=fopen("points.txt","r"))==NULL)
  {
  printf("cannot open this file");
  exit(0);
  }
  i=0;
  while(!feof(fp))
  {
  fscanf(fp,"%s %s %s",[$points[0],&points[1],&points[2])]
  i++;
  }
  
  for(j=0;j<i;j++)
  {
   printf("%s %s %s\n",[$points[j][0],&points[j][1],&points[j][2])]
  
  }
  
  }
  
但是,相同的一段程序,放在vc中编译后,在ug中却读不了点。甚至把输出格式改为%s,整个ug都会跳出,还请大家一起讨论。
int YIN_RP_apply_cb ( int dialog_id,
             void * client_data,
             UF_STYLER_item_value_type_p_t callback_data)
            int i_ret;
          char message[133];
    tag_t point;
    FILE *fp;
    int i;
    double points[10][3];
  
     /* Make sure User Function is available. */   
     if ( UF_initialize() != 0)  
          return ( UF_UI_CB_CONTINUE_DIALOG );
  
     /* ---- Enter your callback code here ----- */
   if((fp=fopen("C:\\points.txt","r"))==NULL)
  {
    UF_UI_open_listing_window();
   UF_UI_write_listing_window("cannot open the file");
  }
  else
  {  
   for(i=0;i<2;i++)
   {
  UF_UI_write_listing_window("can open the file");
  i_ret=fscanf(fp,"%s %s %s",[$points[0],&points[1],&points[2])]
   
   }
  }
  fclose(fp);
   UF_UI_open_listing_window();
    sprintf(message,"%f",points[0][0]);
    UF_UI_write_listing_window(message);
UF_terminate ();
return (UF_UI_CB_CONTINUE_DIALOG);  
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3D打印手板模型快速制作服务,在线报价下单!

QQ 咨询|手机版|联系我们|iCAx开思网  

GMT+8, 2025-1-29 08:42 , Processed in 0.028789 second(s), 12 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2025 www.iCAx.org

快速回复 返回顶部 返回列表