On ZDNet: 10 most annoying programs
20 Resources for

standard template library

  • Subscribe to this listing via:
  • RSS
  • Email

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
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
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 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 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 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
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
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
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
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
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
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
  • << Previous
  • page 1 of 1
  • Next >>


Cisco IOS Command Chart (IOS v.12+)
Becoming proficient with Cisco equipment means remembering a whole new set of commands. These command charts give you a quick way to look up the needed IOS commands and switches when you need them.
Buy Now
Windows XP vs. Mac OS X
This presentation, entitled Standardizing on Windows XP Instead of MAC OS X, provides a pre-packaged option for defending Windows XP against MAC OS X. ...
Buy Now

The Green Enterprise