Author: admin

  • Tekla Open API Resources

    Firstly, Tek1’s Open API Blog posts here. The Open API Reference. This was produced by Trimble and is the go-to place for information about classes and methods etc. There are some code examples also given. You can download it all from here. There are some basic code examples in there which is well worth investigating.…

  • How to run AutoCAD Commands and Macros Without a Dialog Box (AutoCAD tips)

    Have you wondered how you can run AutoCAD Commands without a dialog box. It is simple – add a “-” in front of the the command name For example if you type in “layer” as a command into your Autocad command line your layer dialog box opens up. But if you type in “-layer” there…

  • ERP for Precast

    Here is where we are going with precast ERP System. This will be a cloud based ERP system, based on Dot net, Entity frame works, and Ruby on Rails. Hosted on amazon elastic cloud, it is fully scalable, highly available system. Think of how much administrative work you can save on ordering scheduling, etc. We…

  • Past Precast Projects

    Here are some of the projects we’ve been involved with in recent times – as of this photo (2016-2017). What’s cool about it is that they’re all in the same place at around the same time. Rarely will you ever see them so closely located together, let alone in the same photo. Personally I thought…

  • Grating Splitting

    Why use us for splitting floor plates? We are experts in splitting floor plates. Super fast turn around. Full check report. Output in Tekla or Autocad. You can utilize your Tekla license for more productive work. Cost effective. Inputs required Company name Job number Jobname Part start no Part name Grating specification Banded Maximum allowable…

  • Bubble Deck and Panel Detailing Tooling – AutoDimension Metal Curves

    Hi folks Demo of the Auto-dimension metal curve tool Auto Dimensioning Metal Curves from Tek1 on Vimeo.     This post is a demonstration of the powerful tooling Tek1 has at its disposal. This will save you, the client: time and incorrect dimensions. This tool dimensions complex metal curves in a fraction of a second.…

  • Bar Bending Schedules

    We have aquired CADDs rebar cad software, which is arguably the best tool to detail rebar. CADSRC is used for producing bar bending schedules. WE provide the precise details on bends, shapes and lap splices to meet the requirement of your specific project.  Project Constructrability is tackled while detailing, issues are highlighted. Detailed drawings are…

  • HVAC DETAILING

    HVAC DETAILING

    We provide all phases of Mechanical, and Plumbing (MEP) and HVAC detaiing, drafting and modeling services. Our gathered expertise in all kinds MEP systems is streamlined to cater to Industrial, Residential, Hospital, Educational and Commercial sectors. Our MEP services include Wire frame 3d models when required, Shop and fabrication drawings, Isometric drawings, as built drawings, mark-up detailing, We…

  • How to obtain a small offset around a polyline? (AutoCAD .net API)

      Offsets from a panel are used extensively in detailing. Here’s how to do it – simple, no? See below:   DBObjectCollection _offsetPolylines = polylineInstance.GetOffsetCurves(25); // offsets the polyline by 25 mm // the object collection should really have only one item in it: a polyline offseting the original by 25mm.