b5447b263e
Information sent to Speckle is now presented in hiearchical collections: - Root level contains material proxies - Second level is project storeys - Third level is element type Added database and record definitions for attributes including: - Finishes (surface rendering material) - Storeys Element getters for storey and type name Aligned some speckle_type names to Revit (where possible)
19 lines
666 B
C++
19 lines
666 B
C++
#include "Speckle/Database/Identity/BIMLink.h"
|
|
|
|
using namespace speckle::database;
|
|
using namespace speckle::utility;
|
|
|
|
#ifdef ARCHICAD
|
|
/*--------------------------------------------------------------------
|
|
Constructor
|
|
|
|
selected: Information about a selected Archicad element
|
|
tableID: The ID of the parent table
|
|
--------------------------------------------------------------------*/
|
|
BIMLink::BIMLink(const API_Neig& selected, const BIMRecordID& tableID) : base{Guid{selected.guid}, tableID} {
|
|
//More info should be extracted from API_Neig in future (as required) - extract into link settings, e.g. selection target etc
|
|
} //Link::Link
|
|
#endif
|
|
|
|
|