📄 2004-february.txt
字号:
From kaufmann at ims.tuwien.ac.at Sun Feb 1 21:31:40 2004From: kaufmann at ims.tuwien.ac.at (Hannes Kaufmann)Date: Sun Feb 1 15:30:28 2004Subject: [Acis-alliance] sweeping with self intersectionsMessage-ID: <401D622C.6B6BFC29@ims.tuwien.ac.at>Am I right in the assumption that if I sweep a profile around an axisand this profile intersects the axis, that ACIS cannot calculate theresulting surface (which has self intersections)Sweeping a profile curve with self intersections around an axis worksthough. Is this an ACIS bug or documented/planned behaviour?thanks a lot,Hannes-- Hannes Kaufmann | Vienna University of Technology Researcher | Interactive Media Systems GroupFrom g_baylor at yahoo.com Mon Feb 2 15:41:45 2004From: g_baylor at yahoo.com (=?iso-8859-1?q?gordon=20baylor?=)Date: Mon Feb 2 10:42:32 2004Subject: [Acis-alliance] fatal error LNK1104Message-ID: <20040202154145.86363.qmail@web12705.mail.yahoo.com>James,Thank you for the reply. However, I tried what yousaid and am still getting the same error. The onlything that doesn't seem to match is that when I wentto edit my included libraries it was called SpaBased.dll instead of SpaBased.lib - does this makeany difference.Thanks againGordonGordon,Yes, it has to do with the renaming of the librariesin R11. In yourproject settings you will have to go to the link taband edit your includedlibraries. I think the one you are looking for isSpaBased.lib orSpaBase.lib, depending if you are making a debugbuild. You will also haveto change the rest of the library names if you areusing other parts (e.g.SPAAVisd.lib SpaACISd.lib, SpaPartd.lib, etc.) Youcan find the names ofall of these libraries in the documentation or you canjust look in the$(A3DT)\lib\NT_DLL folder to find the names. Also, all of the header files have been put in onedirectory,$(A3DT)\include, so you will need to go to the C/C++tab and change theinclude directories. You should be able to delete allof the Acis relatedones and just put $(A3DT)\include to replace all ofthem. Hope this helps.James-----Original Message-----From: acis-alliance-bounces@cs.columbia.edu[mailto:acis-alliance-bounces@cs.columbia.edu] OnBehalf Of gordon baylorSent: Friday, January 30, 2004 10:52 AMTo: acis-alliance@cs.columbia.eduSubject: [Acis-alliance] fatal error LNK1104Hello everyone,I am trying to get a simple console applicationrunning but I am getting link error:LINK : fatal error LNK1104: cannot open file"baseutil.lib"Error executing link.exe.I have ACIS R11. Does anybody know what the problemis? Is it anything to do with baseutil.lib beingreplaced by SpaBaseThanks in advance.Gordon ___________________________________________________________BT Yahoo! Broadband - Free modem offer, sign up online today and save ?80 http://btyahoo.yahoo.co.ukFrom g_baylor at yahoo.com Mon Feb 2 15:41:42 2004From: g_baylor at yahoo.com (=?iso-8859-1?q?gordon=20baylor?=)Date: Mon Feb 2 10:43:19 2004Subject: [Acis-alliance] fatal error LNK1104Message-ID: <20040202154142.31843.qmail@web12701.mail.yahoo.com>James,Thank you for the reply. However, I tried what yousaid and am still getting the same error. The onlything that doesn't seem to match is that when I wentto edit my included libraries it was called SpaBased.dll instead of SpaBased.lib - does this makeany difference.Thanks againGordonGordon,Yes, it has to do with the renaming of the librariesin R11. In yourproject settings you will have to go to the link taband edit your includedlibraries. I think the one you are looking for isSpaBased.lib orSpaBase.lib, depending if you are making a debugbuild. You will also haveto change the rest of the library names if you areusing other parts (e.g.SPAAVisd.lib SpaACISd.lib, SpaPartd.lib, etc.) Youcan find the names ofall of these libraries in the documentation or you canjust look in the$(A3DT)\lib\NT_DLL folder to find the names. Also, all of the header files have been put in onedirectory,$(A3DT)\include, so you will need to go to the C/C++tab and change theinclude directories. You should be able to delete allof the Acis relatedones and just put $(A3DT)\include to replace all ofthem. Hope this helps.James-----Original Message-----From: acis-alliance-bounces@cs.columbia.edu[mailto:acis-alliance-bounces@cs.columbia.edu] OnBehalf Of gordon baylorSent: Friday, January 30, 2004 10:52 AMTo: acis-alliance@cs.columbia.eduSubject: [Acis-alliance] fatal error LNK1104Hello everyone,I am trying to get a simple console applicationrunning but I am getting link error:LINK : fatal error LNK1104: cannot open file"baseutil.lib"Error executing link.exe.I have ACIS R11. Does anybody know what the problemis? Is it anything to do with baseutil.lib beingreplaced by SpaBaseThanks in advance.Gordon ___________________________________________________________BT Yahoo! Broadband - Free modem offer, sign up online today and save ?80 http://btyahoo.yahoo.co.ukFrom georgiou at statik.civil.upatras.gr Mon Feb 2 21:18:49 2004From: georgiou at statik.civil.upatras.gr (Andreas Georgiou)Date: Mon Feb 2 14:21:35 2004Subject: [Acis-alliance] fatal error LNK1104References: <20040202154142.31843.qmail@web12701.mail.yahoo.com>Message-ID: <008d01c3e9c1$645cd030$0101a8c0@pano.com>Hi,The following code is from the "dcl_base.h" found in the $(A3DT)\includedirectory,which you have used in your project.What you should do is define NT_DLLD or NT_NET_DLLD in your project settings(for debug builds).#ifndef SPA_NO_AUTO_LINK# ifndef __baseutil# ifdef NT# if defined(NT_DLL) || defined(NT_NET_DLL) || defined(NT_64_DLL) ||defined(SPA_RELEASE_LIBRARY)# pragma comment( lib, "SpaBase.lib")# elif defined(NT_DLLD) || defined(NT_NET_DLLD) || defined(NT_64_DLLD) ||defined(SPA_DEBUG_LIBRARY)# pragma comment( lib, "SpaBased.lib")# else# pragma comment( lib, "baseutil.lib")# endif# endif# endif#endif----- Original Message -----From: "gordon baylor" <g_baylor@yahoo.com>To: <acis-alliance@cs.columbia.edu>Sent: Monday, February 02, 2004 5:41 PMSubject: [Acis-alliance] fatal error LNK1104> James,> Thank you for the reply. However, I tried what you> said and am still getting the same error. The only> thing that doesn't seem to match is that when I went> to edit my included libraries it was called> SpaBased.dll instead of SpaBased.lib - does this make> any difference.>> Thanks again> Gordon>>>>>> Gordon,>> Yes, it has to do with the renaming of the libraries> in R11. In your> project settings you will have to go to the link tab> and edit your> included> libraries. I think the one you are looking for is> SpaBased.lib or> SpaBase.lib, depending if you are making a debug> build. You will also> have> to change the rest of the library names if you are> using other parts> (e.g.> SPAAVisd.lib SpaACISd.lib, SpaPartd.lib, etc.) You> can find the names> of> all of these libraries in the documentation or you can> just look in the> $(A3DT)\lib\NT_DLL folder to find the names.>> Also, all of the header files have been put in one> directory,> $(A3DT)\include, so you will need to go to the C/C++> tab and change the> include directories. You should be able to delete all> of the Acis> related> ones and just put $(A3DT)\include to replace all of> them.>> Hope this helps.>> James>> -----Original Message-----> From: acis-alliance-bounces@cs.columbia.edu> [mailto:acis-alliance-bounces@cs.columbia.edu] On> Behalf Of gordon> baylor> Sent: Friday, January 30, 2004 10:52 AM> To: acis-alliance@cs.columbia.edu> Subject: [Acis-alliance] fatal error LNK1104>> Hello everyone,> I am trying to get a simple console application> running but I am getting link error:>> LINK : fatal error LNK1104: cannot open file> "baseutil.lib"> Error executing link.exe.>> I have ACIS R11. Does anybody know what the problem> is? Is it anything to do with baseutil.lib being> replaced by SpaBase> Thanks in advance.>> Gordon>>>>>>>> ___________________________________________________________> BT Yahoo! Broadband - Free modem offer, sign up online today and save ?80http://btyahoo.yahoo.co.uk> _______________________________________________> Acis-alliance mailing list> Acis-alliance@cs.columbia.edu> http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>From georgiou at statik.civil.upatras.gr Mon Feb 2 21:18:58 2004From: georgiou at statik.civil.upatras.gr (Andreas Georgiou)Date: Mon Feb 2 14:21:39 2004Subject: [Acis-alliance] fatal error LNK1104References: <20040202154142.31843.qmail@web12701.mail.yahoo.com>Message-ID: <008e01c3e9c1$69001980$0101a8c0@pano.com>Hi,The following code is from the "dcl_base.h" found in the $(A3DT)\includedirectory,which you have used in your project.What you should do is define NT_DLLD or NT_NET_DLLD in your project settings(for debug builds).#ifndef SPA_NO_AUTO_LINK# ifndef __baseutil# ifdef NT# if defined(NT_DLL) || defined(NT_NET_DLL) || defined(NT_64_DLL) ||defined(SPA_RELEASE_LIBRARY)# pragma comment( lib, "SpaBase.lib")# elif defined(NT_DLLD) || defined(NT_NET_DLLD) || defined(NT_64_DLLD) ||defined(SPA_DEBUG_LIBRARY)# pragma comment( lib, "SpaBased.lib")# else# pragma comment( lib, "baseutil.lib")# endif# endif# endif#endif----- Original Message -----From: "gordon baylor" <g_baylor@yahoo.com>To: <acis-alliance@cs.columbia.edu>Sent: Monday, February 02, 2004 5:41 PMSubject: [Acis-alliance] fatal error LNK1104> James,> Thank you for the reply. However, I tried what you> said and am still getting the same error. The only> thing that doesn't seem to match is that when I went> to edit my included libraries it was called> SpaBased.dll instead of SpaBased.lib - does this make> any difference.>> Thanks again> Gordon>>>>>> Gordon,>> Yes, it has to do with the renaming of the libraries> in R11. In your> project settings you will have to go to the link tab> and edit your> included> libraries. I think the one you are looking for is> SpaBased.lib or> SpaBase.lib, depending if you are making a debug> build. You will also> have> to change the rest of the library names if you are> using other parts> (e.g.> SPAAVisd.lib SpaACISd.lib, SpaPartd.lib, etc.) You> can find the names> of> all of these libraries in the documentation or you can> just look in the> $(A3DT)\lib\NT_DLL folder to find the names.>> Also, all of the header files have been put in one> directory,> $(A3DT)\include, so you will need to go to the C/C++> tab and change the> include directories. You should be able to delete all> of the Acis> related> ones and just put $(A3DT)\include to replace all of> them.>> Hope this helps.>> James>> -----Original Message-----> From: acis-alliance-bounces@cs.columbia.edu> [mailto:acis-alliance-bounces@cs.columbia.edu] On> Behalf Of gordon> baylor> Sent: Friday, January 30, 2004 10:52 AM> To: acis-alliance@cs.columbia.edu> Subject: [Acis-alliance] fatal error LNK1104>> Hello everyone,> I am trying to get a simple console application> running but I am getting link error:>> LINK : fatal error LNK1104: cannot open file> "baseutil.lib"> Error executing link.exe.>> I have ACIS R11. Does anybody know what the problem> is? Is it anything to do with baseutil.lib being> replaced by SpaBase> Thanks in advance.>> Gordon>>>>>>>> ___________________________________________________________> BT Yahoo! Broadband - Free modem offer, sign up online today and save ?80http://btyahoo.yahoo.co.uk> _______________________________________________> Acis-alliance mailing list> Acis-alliance@cs.columbia.edu> http://lists.cs.columbia.edu/mailman/listinfo/acis-alliance>From JPRISBE at steelcase.com Mon Feb 2 15:03:00 2004From: JPRISBE at steelcase.com (JPRISBE@steelcase.com)Date: Mon Feb 2 15:19:34 2004
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -