Many people adore the Garamond font and its many variations. With that,
LaTeX has also introduced its own version, with a complimentary math-mode font,
inside the mathdesign package.
The most common way to use it is as follows:
Many people adore the Garamond font and its many variations. With that,
LaTeX has also introduced its own version, with a complimentary math-mode font,
inside the mathdesign package.
The most common way to use it is as follows:
| #include <opencv2/opencv.hpp> | |
| #include <pcl/common/common_headers.h> | |
| #include <pcl/io/pcd_io.h> | |
| #include <pcl/point_types.h> | |
| #include <pcl/point_cloud.h> | |
| #include <pcl/visualization/pcl_visualizer.h> | |
| #include <Eigen/Core> | |
| #include <Eigen/LU> |
| --log_gc (Log heap samples on garbage collection for the hp2ps tool.) | |
| type: bool default: false | |
| --expose_gc (expose gc extension) | |
| type: bool default: false | |
| --max_new_space_size (max size of the new generation (in kBytes)) | |
| type: int default: 0 | |
| --max_old_space_size (max size of the old generation (in Mbytes)) | |
| type: int default: 0 | |
| --max_executable_size (max size of executable memory (in Mbytes)) | |
| type: int default: 0 |
| module Utilities { | |
| export class Timer implements eg.IUpdateable { | |
| private OnTick: eg.EventHandler; | |
| private _start: number; | |
| private _interval: number; | |
| private _started: boolean; | |
| private _lastTime: number; | |
| constructor(interval: eg.TimeSpan); | |
| constructor(interval: eg.TimeSpan, callback?: Function); |
| /* | |
| * A simple libpng example program | |
| * http://zarb.org/~gc/html/libpng.html | |
| * | |
| * Modified by Yoshimasa Niwa to make it much simpler | |
| * and support all defined color_type. | |
| * | |
| * To build, use the next instruction on OS X. | |
| * $ brew install libpng | |
| * $ clang -lz -lpng16 libpng_test.c |
| get_cmake_property(_variableNames VARIABLES) | |
| foreach (_variableName ${_variableNames}) | |
| message(STATUS "${_variableName}=${${_variableName}}") | |
| endforeach() |