📄 2005-october.txt
字号:
> -----Urspr?ngliche Nachricht-----> Von: Christian Sch?tz [mailto:christian.schuetz@metromec.ch] > Gesendet: Mittwoch, 26. Oktober 2005 14:55> An: Herb, Markus> Betreff: AW: [Acis-alliance] gi/glhusk crashes on Nvidia > Quadro GO boards> > Hi Markus> > > Does anybody also has this problem and knows an > appropriate solution? > > Yes we had similiar problems. The installation of the latest > display driver often solved the problem.> > Greetings> Christian-------------- next part --------------An HTML attachment was scrubbed...URL: http://lists.cs.columbia.edu/pipermail/acis-alliance/attachments/20051026/9306c9a0/attachment.htmlFrom iamthomasxh at hotmail.com Thu Oct 27 10:38:15 2005From: iamthomasxh at hotmail.com (g ?)Date: Thu Oct 27 10:39:07 2005Subject: [Acis-alliance] api_sweep_with_options() problemsIn-Reply-To: <435D1893.1080407@gmail.com>Message-ID: <BAY12-F243BD4DB2C00EAFBB8661FB6680@phx.gbl>hi, I have not used the sweep components, but I have experiences on stitch and advanced covering,two suggestions may be useful,1, it seems wierd you first construct a planar sheet body and then you extract faces from it. Why not use the plface created directly2, the option may deserve more settings, this option is a content rich one. Try to use different options to find at least a working style and then continue with other stories.btw, I am talking about ACIS 13.RegardsXue Hui@Zhejiang University>From: Stefan Schmidt <schmiddie78@gmail.com>>To: acis-alliance@cs.columbia.edu>CC: rGraebert@givemepower.de>Subject: [Acis-alliance] api_sweep_with_options() problems>Date: Mon, 24 Oct 2005 19:23:31 +0200>>Hi,>>I am trying to run the following code snippet but pSweepResult is >always NULL. I do api_initialize_sweeping() and so forth before. >Anybody knows what else I need to take care of or which fields in >sweep_options I have to set? Thanks for any help.>>SPAposition origin(0.0,0.0,0.0);>SPAposition left(0.0,10.0,0.0);>SPAposition right(10.0,0.0,0.0);>FACE *fprofile = NULL;> check_outcome(api_make_plface(origin, left, right, fprofile));>FACE *faces[1];>faces[0] = fprofile;>BODY *sheet = NULL;>check_outcome(api_mk_by_faces(NULL,1,faces,sheet));>check_outcome(api_body_to_2d(sheet));>ENTITY_LIST face_list;>check_outcome(api_get_faces((ENTITY*)sheet,face_list));>ENTITY *profile=face_list[0];>sweep_options opt;>opt.set_draft_angle(0.349);>BODY* pSweepResult = 0;>double dist = -30.0;>outcome error = api_sweep_with_options(profile, dist, &opt, >pSweepResult);>_______________________________________________>Acis-alliance mailing list>Acis-alliance@cs.columbia.edu>http://lists.cs.columbia.edu/mailman/listinfo/acis-allianceFrom eswar at amadasoft.co.in Thu Oct 27 23:43:45 2005From: eswar at amadasoft.co.in (ESWAR)Date: Thu Oct 27 23:44:50 2005Subject: [Acis-alliance] api_sweep_with_options() problemsMessage-ID: <3404FFFE3A3D264F911AC78D782708C670469C@groupware.ASI.COM>Hi, Call api_initialize_sweeping() function before callingapi_sweep_with_options(). After sweeping is done terminate sweeping bycalling api_terminate_sweeping().Regards,Eswar-----Original Message-----From: acis-alliance-bounces@cs.columbia.edu[mailto:acis-alliance-bounces@cs.columbia.edu] On Behalf Of StefanSchmidtSent: Monday, October 24, 2005 10:54 PMTo: acis-alliance@cs.columbia.eduCc: rGraebert@givemepower.deSubject: [Acis-alliance] api_sweep_with_options() problemsHi,I am trying to run the following code snippet but pSweepResult is alwaysNULL. I do api_initialize_sweeping() and so forth before. Anybody knows what else I need to take care of or which fields in sweep_options I haveto set? Thanks for any help.SPAposition origin(0.0,0.0,0.0);SPAposition left(0.0,10.0,0.0);SPAposition right(10.0,0.0,0.0);FACE *fprofile = NULL; check_outcome(api_make_plface(origin, left, right, fprofile));FACE *faces[1];faces[0] = fprofile;BODY *sheet = NULL;check_outcome(api_mk_by_faces(NULL,1,faces,sheet));check_outcome(api_body_to_2d(sheet));ENTITY_LIST face_list;check_outcome(api_get_faces((ENTITY*)sheet,face_list));ENTITY *profile=face_list[0];sweep_options opt;opt.set_draft_angle(0.349);BODY* pSweepResult = 0;double dist = -30.0;outcome error = api_sweep_with_options(profile, dist, &opt,pSweepResult);_______________________________________________Acis-alliance mailing listAcis-alliance@cs.columbia.eduhttp://lists.cs.columbia.edu/mailman/listinfo/acis-allianceFrom iamsweeting at 163.com Fri Oct 28 22:27:18 2005From: iamsweeting at 163.com (sweeting)Date: Fri Oct 28 22:28:23 2005Subject: [Acis-alliance] Re: Acis-alliance Digest, Vol 31, Issue 8Message-ID: <200510290228.j9T2S4sv006190@cs.columbia.edu>======= 2005-10-29 00:00:07 =======>Send Acis-alliance mailing list submissions to> acis-alliance@cs.columbia.edu>>To subscribe or unsubscribe via the World Wide Web, visit> http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>or, via email, send a message with subject or body 'help' to> acis-alliance-request@cs.columbia.edu>>You can reach the person managing the list at> acis-alliance-owner@cs.columbia.edu>>When replying, please edit your Subject line so it is more specific>than "Re: Contents of Acis-alliance digest...">>>Today's Topics:>> 1. RE: api_sweep_with_options() problems (ESWAR)>>>---------------------------------------------------------------------->>Message: 1>Date: Fri, 28 Oct 2005 09:13:45 +0530>From: "ESWAR" <eswar@amadasoft.co.in>>Subject: RE: [Acis-alliance] api_sweep_with_options() problems>To: "Stefan Schmidt" <schmiddie78@gmail.com>,> <acis-alliance@cs.columbia.edu>>Cc: rGraebert@givemepower.de>Message-ID: <3404FFFE3A3D264F911AC78D782708C670469C@groupware.ASI.COM>>Content-Type: text/plain; charset="us-ascii">>Hi,> Call api_initialize_sweeping() function before calling>api_sweep_with_options(). After sweeping is done terminate sweeping by>calling api_terminate_sweeping().>>Regards,>Eswar>>-----Original Message----->From: acis-alliance-bounces@cs.columbia.edu>[mailto:acis-alliance-bounces@cs.columbia.edu] On Behalf Of Stefan>Schmidt>Sent: Monday, October 24, 2005 10:54 PM>To: acis-alliance@cs.columbia.edu>Cc: rGraebert@givemepower.de>Subject: [Acis-alliance] api_sweep_with_options() problems>>Hi,>>I am trying to run the following code snippet but pSweepResult is always>>NULL. I do api_initialize_sweeping() and so forth before. Anybody knows >what else I need to take care of or which fields in sweep_options I have>>to set? Thanks for any help.>>SPAposition origin(0.0,0.0,0.0);>SPAposition left(0.0,10.0,0.0);>SPAposition right(10.0,0.0,0.0);>FACE *fprofile = NULL;> >check_outcome(api_make_plface(origin, left, right, fprofile));>FACE *faces[1];>faces[0] = fprofile;>BODY *sheet = NULL;>check_outcome(api_mk_by_faces(NULL,1,faces,sheet));>check_outcome(api_body_to_2d(sheet));>ENTITY_LIST face_list;>check_outcome(api_get_faces((ENTITY*)sheet,face_list));>ENTITY *profile=face_list[0];>sweep_options opt;>opt.set_draft_angle(0.349);>BODY* pSweepResult = 0;>double dist = -30.0;>outcome error = api_sweep_with_options(profile, dist, &opt,>pSweepResult);>_______________________________________________>Acis-alliance mailing list>Acis-alliance@cs.columbia.edu>http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>>>>------------------------------>>_______________________________________________>Acis-alliance mailing list>Acis-alliance@cs.columbia.edu>http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>>>End of Acis-alliance Digest, Vol 31, Issue 8>********************************************>= = = = = = = = = = = = = = = = = = = = 致礼! sweeting iamsweeting@163.com 2005-10-29From iamsweeting at 163.com Fri Oct 28 22:28:27 2005From: iamsweeting at 163.com (sweeting)Date: Fri Oct 28 22:29:22 2005Subject: [Acis-alliance] Re:Acis-alliance Digest, Vol 31, Issue 8Message-ID: <200510290229.j9T2TBsv006571@cs.columbia.edu>profile is the sweep result!!In your codes ,the result you want is the profile,because the pSweepResult is NULL;details about them you can see the explain about to the fucnction api_sweep_with_options();part of them:Face belonging to a Body: When the profile is part of a body, the result of the sweep is returned as that body. The owning body is altered and the new body points to NULL. Face not belonging to a Body: When the profile is a face not already belonging to a body (a separate face or edge), a new body is created and returned in the new_body argument. The face remains as a separate face in the model and can then be deleted or used for something else. >Send Acis-alliance mailing list submissions to> acis-alliance@cs.columbia.edu>>To subscribe or unsubscribe via the World Wide Web, visit> http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>or, via email, send a message with subject or body 'help' to> acis-alliance-request@cs.columbia.edu>>You can reach the person managing the list at> acis-alliance-owner@cs.columbia.edu>>When replying, please edit your Subject line so it is more specific>than "Re: Contents of Acis-alliance digest...">>>Today's Topics:>> 1. RE: api_sweep_with_options() problems (ESWAR)>>>---------------------------------------------------------------------->>Message: 1>Date: Fri, 28 Oct 2005 09:13:45 +0530>From: "ESWAR" <eswar@amadasoft.co.in>>Subject: RE: [Acis-alliance] api_sweep_with_options() problems>To: "Stefan Schmidt" <schmiddie78@gmail.com>,> <acis-alliance@cs.columbia.edu>>Cc: rGraebert@givemepower.de>Message-ID: <3404FFFE3A3D264F911AC78D782708C670469C@groupware.ASI.COM>>Content-Type: text/plain; charset="us-ascii">>Hi,> Call api_initialize_sweeping() function before calling>api_sweep_with_options(). After sweeping is done terminate sweeping by>calling api_terminate_sweeping().>>Regards,>Eswar>>-----Original Message----->From: acis-alliance-bounces@cs.columbia.edu>[mailto:acis-alliance-bounces@cs.columbia.edu] On Behalf Of Stefan>Schmidt>Sent: Monday, October 24, 2005 10:54 PM>To: acis-alliance@cs.columbia.edu>Cc: rGraebert@givemepower.de>Subject: [Acis-alliance] api_sweep_with_options() problems>>Hi,>>I am trying to run the following code snippet but pSweepResult is always>>NULL. I do api_initialize_sweeping() and so forth before. Anybody knows >what else I need to take care of or which fields in sweep_options I have>>to set? Thanks for any help.>>SPAposition origin(0.0,0.0,0.0);>SPAposition left(0.0,10.0,0.0);>SPAposition right(10.0,0.0,0.0);>FACE *fprofile = NULL;> >check_outcome(api_make_plface(origin, left, right, fprofile));>FACE *faces[1];>faces[0] = fprofile;>BODY *sheet = NULL;>check_outcome(api_mk_by_faces(NULL,1,faces,sheet));>check_outcome(api_body_to_2d(sheet));>ENTITY_LIST face_list;>check_outcome(api_get_faces((ENTITY*)sheet,face_list));>ENTITY *profile=face_list[0];>sweep_options opt;>opt.set_draft_angle(0.349);>BODY* pSweepResult = 0;>double dist = -30.0;>outcome error = api_sweep_with_options(profile, dist, &opt,>pSweepResult);>_______________________________________________>Acis-alliance mailing list>Acis-alliance@cs.columbia.edu>http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>>>>------------------------------>>_______________________________________________>Acis-alliance mailing list>Acis-alliance@cs.columbia.edu>http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>>>End of Acis-alliance Digest, Vol 31, Issue 8>********************************************>= = = = = = = = = = = = = = = = = = = = sweeting iamsweeting@163.com 2005-10-29
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -