일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- IdentityCard
- Mechanical feature inheritance
- 클래식
- 카티아
- CAA Doc
- 날짜관련함수
- MP3
- CAA
- ObjectSpecsModeler
- 변환
- Catalog
- 푸치니
- CATIA
- FTP 명령어
- Context
- 팝
- XDMCP
- Uno21.com
- 가요
- Feature Initiate
- freeware
- Excel
- 모르면 병
- 파가니니
- Feature
- 교향곡
- Catia V5
- 여러파일 FTP로 받기
- 화일갯수
- Mechanical Feature
- Today
- Total
목록분류 전체보기 (115)
data for us
1. Firefox download from http://www.mozilla.or.kr 2. Unzip : #tar xzvf firefox-2.0.0.9.tar.gz 3. Copy Folder : #cp -rf firefox /usr/lib 4. Install : #cd /usr/lib/firefox #./firefox If you got a libstdc++ error, install libstdc++ #yum -y install compat-libstdc++-33 Do No.4 again Good luck. 열심히 찾으면 반드시 답은 있다...
내 속엔 헛된 바람들로 당신에 편할 곳 없네 내 속엔 내가 어쩔 수 없는 어둠 당신에 쉴 자리를 뺏고 내 속엔 내가 이길 수 없는 슬픈 무성한 가시 나누 숲 같네
System Macro CATImplementClassMacro CATImplementClass (Class,Typeofclass,Basemeta,Impmeta) Declares an implementation or extension class. Role: Declares that the current class is either an implementation or an extension class. The class must derive from CATBaseUnknown. Use this macro in the class source (.cpp) file in conjunction with CATDeclareClass in the class header file. End it with a semic..
ObjectSpecsModeler:Mechanical feature Architecture:Implement the feature behaviors * Interfaces are implemented through the Object Modeler extension mechanism * At last you will need to: - Encapsulate in your own interfaces the access to the feature's attributes - Provide the build mechanism for your feature * Also you want to implement some DS interfaces to further integrate your feature in CAT..
Mechanical feature inheritance : Public feature * MechanicalFeature - Feature without topology/geometry - Stores only data but can display visualization * GSMTool - for wireframe or surface root feature * GSMGeom or GeometricalElement3D - Applied by computing a wire frame or a surface feature ex: Point, curve or surface * MechanicalFormFeature - Applied by computing a form (or footprint), and op..
User Catalog management * Catalog files are dedicated to store feature definition (StartUp) * A catalog may store any number of StartUps * Once created a catalog should never be deleted - In fact a catalog has a unique ID which is used to identify the StartUps it contains. When a catalog is deleted and recreated, existing instances of every feature will still reference the old catalog ID. - inst..
Feature Instantiation * To Create an instance, - Open the catalog in read only: . use AccessCatalog method defined in CATCatalogFactoryServices.h - Retrieve the StartUp - Instantiate the StartUp . use the CATISpecObject::Instantiate method - Set attribute values * Open catalog CATIContainer * piSpecCont=...; CATUnicodeString catalogName = "MyCatalog.CATfct"; CATUnicodeString clientID = "ID"; CAT..
Catalog Definition * Create a new catalog - suffix : CATfct - Must be located in the CNEXT\resources\graphic directory of your framework - Use the CreateCaltalog method definded in header file CATCatalogFactoryServices.h CATUnicodeString catalogName = "TestCat.CATfct"; CATICatalog * piTestCatalog = NULL; HRESULT hr= ::CreateCatalog(&catalogName, &piTestCatalog); CATUnicodeString clientId = "..."..
Process to define a new feature * Design your StartUp - Define the reference data structure . Create or Upgrade catalog . Create the startup . Define the startup attributes . Save the catalog * Implement the different behaviors - Provide the implementations for the inheritance to be supported by the feature through Object Modeler extension - If needed, provide the Build mechanism * Create instan..
Feature instantiation and persistency * A feature is initiated from its StartUp that is retrieved from the catalog * The instance will be an exact copy of the startup and will retain any attributes with their initial default values * Because a feature ia a late type, the StartUp is retrieved from the catalog at Run-Time and it is instantiated in order to create a new feature * To be persistent a..