Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- MiniMagics (exe)
- Here's what MiniMagics offers: Import and save .STL, .magics or .mgx files; Compress STL files up to factor 20; View parts and rotate, pan or zoom; Detect bad edges and flipped triangles; Make a section; Request part information, such as XYZ measurements, volume, surface area, or number of bad edges;...
- Tags: standard template library
- Software downloads 2008-02-20
- Represent the Fibonacci Sequence as a collection in the form of an STL sequence class
- Anyone who appreciates mathematical elegance will appreciate the Fibonacci sequence and its associated relationship, the Golden Ratio. In this chapter download from Extended STL: Collections and Iterators, Volume 1, examine how this mathematical sequence can be represented as a collection in the form of a Standard Template Library...
- Tags: standard template library, collection, addison-wesley
- Book chapters 2007-10-04
- STL Export for AutoCAD (exe)
- STL Export for AutoCAD is a Stereolithography (.stl) file export plug-in for AutoCAD. This plug-in gives AutoCAD the ability to export geometric data from AutoCAD to ASCII and Binary STL files. STL Export for AutoCAD extracts facet data from 3D Solids as well as 3D Face, Polygon Mesh and PolyFace...
- Tags: standard template library, autocad
- Software downloads 2007-02-07
- STL Import for AutoCAD (exe)
- STL Import for AutoCAD is a Stereolithography (.stl) file import add-in for AutoCAD. This plug-in gives AutoCAD the ability to import geometric data from ASCII and Binary STL files. STL Import for AutoCAD reads polygon mesh data stored in STL files and imports it into AutoCAD. A polygon mesh in...
- Tags: standard template library, autocad
- Software downloads 2007-01-04
- STL Import for SolidWorks (exe)
- STL Import for SolidWorks is a Stereolithography (.stl) file import add-in for SolidWorks. This add-in gives SolidWorks the ability to import geometric data from ASCII and Binary STL files. STL Import for SolidWorks reads polygon mesh data stored in STL files. A polygon mesh in a STL file is comprised...
- Tags: standard template library, solidworks corp.
- Software downloads 2006-12-08
- STL Import for Solid Edge (exe)
- STL Import for Solid Edge is a Stereolithography (.stl) file import add-in for Solid Edge. This plug-in gives Solid Edge the ability to import geometric data from ASCII and Binary STL files. STL Import for Solid Edge reads polygon mesh data stored in STL files and imports it into Solid...
- Tags: standard template library
- Software downloads 2006-12-08
- STL Export for IntelliCAD (exe)
- STL Export for IntelliCAD is a Stereolithography STL file export plug-in for IntelliCAD powered applications. This plug-in gives IntelliCAD powered applications the ability to export geometric data to ASCII and Binary STL files. STL Export for IntelliCAD is very easy to use as it adds a new command to the...
- Tags: standard template library, intellicad
- Software downloads 2006-06-06
- Open Watcom C/C++ (exe)
- Open Watcom is a joint effort between SciTech Software, Sybase, and the Open Source development community to maintain and enhance the Sybase Watcom C/C++ compiler products. The core tools in the package permit cross-platform development that allows developers to exploit the advanced features of 32-bit operating systems, including Win32, OS/2...
- Tags: standard template library, compiler, sybase inc., scitech software, c/c++, development tools, programming languages, software development, software/web development
- Software downloads 2006-03-22
- CtrlView (exe)
- CtrlView is a viewer/converter for different 2D/3D raster/vector file formats with the format recognition system. It means that CtrlView analyzes content of the file and defines its format. If file format is among supported file types, CtrlView will visualize this file in a correct form. If file type is unknown...
- Tags: standard template library, jpeg, tiff, png, ctrlview, virtual reality, emerging technologies
- Software downloads 2005-12-20
- STL Import for IntelliCAD (exe)
- STL Import for IntelliCAD is a Stereolithography STL file import plug-in for IntelliCAD powered applications. This plug-in gives IntelliCAD powered applications the ability to import geometric data from ASCII and Binary STL files. STL Import for IntelliCAD is very easy to use as it adds a new command to the...
- Tags: standard template library, intellicad
- Software downloads 2005-12-13
- Careers in the STL area
- Hi everyone. I'm a 21 year old college student at Lindenwood University in St. Charles MO. I only have a year left of school and I'm a MIS major. I was wondering if there were anyone on TechRepublic that lives in the St. Louis area and would know about job...
- Tags: career, michael l., standard template library
- Q&A 2005-09-23
- Reduce complexity and boost readability using STL functors and predicates
- The Standard Template Library STL contains many things that most C++ programmers can't live without. It also shows the power of C++ in its ability to program conceptually. STL concepts include containers, ranges, algorithms, and functors. In this article, I'll focus on the functor, which is a class that can...
- Tags: john torjo, standard template library, functor, algorithm
- Technical articles 2003-09-18
- Use STL streams for easy C++ thread-safe logging
- Streams offer a powerful abstraction for dealing with data, as they allow you to call generic read/write functions without caring where the data comes from or goes. With streams, you can use the same code for reading from console, file, sockets, etc.C++ combines this power with operator overloading and provides...
- Tags: john torjo, standard template library, standard template library stream, c++
- Technical articles 2003-09-23
- C++: Removing duplicates from a range
- This article was originally published on Builder.com.The Standard Template Library STL shows us how to deal with the complexity of algorithms over structures: Separate them. That’s why we have containers (std::vector, std::deque, std::list, etc.) and algorithms. To be as generic as possible, algorithms operate on ranges—sequences of elements. That is,...
- Tags: algorithm, c++, john torjo, pointer, stable_unique, standard template library
- Technical articles 2003-02-28
- C++: Removing duplicates from a range
- The Standard Template Library STL shows us how to deal with the complexity of algorithms over structures: Separate them. That’s why we have containers (std::vector, std::deque, std::list, etc.) and algorithms. To be as generic as possible, algorithms operate on ranges—sequences of elements. That is, you can apply an algorithm to...
- Tags: engineering, john torjo, c++, algorithm, pointer, standard template library, stable_unique
- Technical articles 2003-01-28
- Format C++ objects as you write them
- The Standard Template Library allows you to write objects to streams. But what about custom formatting? Builder.com's C++ guru, John Torjo, walks you through sample code to demonstrate a solution.The C++ Standard Template Library STL provides an elegant way to write objects to streams: You have a class, and to...
- Tags: c/c++, john torjo, standard template library, formatter, c++
- Technical articles 2002-11-11
- Implement these quick tips to make better use of the STL in C++
- The Standard Template Library STL enables you to make your C++ code more reusable and efficient. This pair of tips will help you tweak the STL to avoid some common errors.By John TorjoThe Standard Template Library STL provides algorithms and containers that use templates to implement a reusable and extensible...
- Tags: programming languages, guest contributor, standard template library, t returnvalue, c++
- Technical articles 2002-08-28
- Easily write and format ranges and containers in C++
- The C++ Standard Template Library STL offers a handy way to write values to streams, but it doesn't work with arrays. Here's a simple approach that lets you write containers and ranges to streams using familiar syntax.By John TorjoThe Standard Template Library STL provides an elegant way to write values...
- Tags: c++, guest contributor, standard template library
- Technical articles 2002-07-25
- Extending the C++ STL with custom containers
- The Standard Template Library STL helps C++ developers deliver robust code fast. Find out how you can extend customized containers--a key component of the STL.The creators of C++ took immense care to create a library that was efficient, portable, and reusable. The Standard Template Library STL can be summed up...
- Tags: c++, standard template library, iterator
- Technical articles 2002-07-03
- Reap the benefits of the C++ Standard Template Library
- The Standard Template Library STL in C++ makes code run faster and more efficiently. Find out how to take advantage of this powerful component.While C++ has traditionally been considered to be synonymous with object-oriented programming and object-oriented design, we sometimes tend to forget that C++ actually includes the first widely...
- Tags: c/c++, programming languages, ooa/ood/oop, benefit, standard template library, c++, algorithm
- Technical articles 2002-06-06
- << Previous
- page 1 of 1
- Next >>