Recent content by karim

  1. K

    Where is the documentation/paper for active data ?

    Why analysis situs uses the vtk rather than the cascade AIS_InteractiveService ? I had a feeling that vtk might be better for engineering applications like fem.
  2. K

    Where is the documentation/paper for active data ?

    I am going to ask a lot of stupid questions it seems. :( Why asiData_ReEdge has a function to set first and last VertexIndex ? what is the use of vertexIndex ? should not a property concerning vertex be in the asiData_ReVertex ? The reason I am atempting to use the existing code is that I...
  3. K

    Where is the documentation/paper for active data ?

    @Quaoar, Lets assume I have 4 vertices and 3 edges in a simple FEM model, and lets say I decide to use the asiEngine_Model for my data. of course each vertex has an ID and xyz coordinates and the edges have at 2 vertices that define the start and end of the edge. should I use the...
  4. K

    Where is the documentation/paper for active data ?

    I am comfortable with active data. I can derive my own data model from ActData_BaseModel. However, as I go through the code of AS and I think it is far better than what I can possibly write. I think the separation of the concern is well done. The framework solves a lot of issues. a big concern...
  5. K

    Do I need an AIS_InteractiveContext per Viewer (window)

    I took the "roads less travelled" and experimented with the ASI_interactiveContext. What you said is absolutely correct. However, I may need extruded view of my FEM model in one view and a wireframe view in another. So I decided I better have one context for one view for the time being. (for the...
  6. K

    Where is the documentation/paper for active data ?

    I am going through the code and I think has a lot of things I learn. Now I understand Partition, Node and the Model from active data. I am stuck there. I don't know how to proceed from here ? should I walk backwards from the asiTcl_Interp and understand the code from there ?
  7. K

    Where is the documentation/paper for active data ?

    I am going through the AS code for a few days now and I am still confused about asiData_VertexNode class. I suppose this class is supposed to have xyz information and name or id of the vertex in it. but there is no parameter fields defined there. Why ? what is going on ?
  8. K

    Where is the documentation/paper for active data ?

    Do I have to look at the resulting BinOcaf file with inspector ? or should I use something else. I created a simple model but I can not make heads or tails with inspector !!! Many feilds that does not make sense at all. As soon as the issue stopped I wanted to get on with my model. So I did not...
  9. K

    Where is the documentation/paper for active data ?

    Works. I modified the code so it is ok.
  10. K

    Where is the documentation/paper for active data ?

    Hi @Quaoar, I traced the issue to the bin format. I changed the bin format to the BinOcaf in the ActData.h and recompiled the library. Then I compiled my application using the new header files and compiled binaries and libs. My application still uses the ACTBin format. Is there a switch...
  11. K

    Where is the documentation/paper for active data ?

    I managed to debug inside SaveAs. The problem occurs here in CDF_StoreList.CXX: 97 if (aDocumentStorageDriver.IsNull()) 98 { 99 Standard_SStream aMsg; 100 aMsg <<"No storage driver does exist for this format: " << theDocument->StorageFormat() << (char)0...
  12. K

    Where is the documentation/paper for active data ?

    Ok. it seems changing the order of builds fixes the issue.
  13. K

    Where is the documentation/paper for active data ?

    I decided to build only the libraries for AS so I copied parts of a working directory of AS to a new directory and changed the make file to build only the libraries. The active data can be build on its own. it seems there are interdependencies between asiData and asiAlgo. I attached the changed...
  14. K

    Where is the documentation/paper for active data ?

    I put a breakpoint at the SaveAs but the debugger refuses to step into the SaveAs Code. Howver the error message becomes a bit more detailed: Exception at 0x7ffed5634fd9, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance) in TKCDF!LDOMParser::getDocument
  15. K

    Where is the documentation/paper for active data ?

    Hi, Unfortunately this change did not resolve the issue. I am using the dll version from the analysis situs 1 library pack.
Top