►Nboost | |
►Ncinder | |
►Napp | |
►CApp | |
CSettings | |
►CAppBasic | |
CSettings | |
►CAppCocoaTouch | |
CKeyboardOptions | Optional params passed to showKeyboard(); |
CSettings | |
►CAppCocoaView | |
CSettings | |
CAppImplMsw | |
CAppImplMswBasic | |
CAppImplMswRenderer | |
►CAppImplMswRendererDx | |
CFixedVertex | |
CLightData | |
CAppImplMswRendererGdi | |
CAppImplMswRendererGl | |
CAppImplMswScreenSaver | |
CAppImplWinRT | |
CAppImplWinRTBasic | |
►CAppScreenSaver | |
CSettings | |
CAssetLoadExc | Exception for failed asset loading |
CBitwiseAndEventCombiner | Returns a bitmask where in order for the bit in type T to be be 1, it has to be 1 from all slot. Returns 0 if there are no slots |
CBlankingWindow | |
CBooleanAndEventCombiner | Returns true if all slots return true, else false. Does not short-circuit. Returns true if there are no slots |
CBooleanOrEventCombiner | Returns true if any slots return true, else false. Does not short-circuit. Returns true if there are no slots |
CEvent | Base class for all Events |
CEventCombiner | |
CExcInvalidWindow | Thrown when an operation is performed on a WindowRef which refers to an invalid Window |
CFileDropEvent | Represents a file-drop event, typically received from Windows Explorer or Mac OS X Finder |
CFullScreenOptions | Options passed when entering fullscreen |
CKeyEvent | Represents a keyboard event |
CMouseEvent | Represents a mouse event |
CRenderer | |
CRendererDx | |
CRendererGl | |
CResourceLoadExc | Exception for failed resource loading |
►CTouchEvent | Represents a touch event |
CTouch | |
►CWindow | |
CFormat | |
CWindowImplMsw | |
CWindowImplMswBasic | |
CWindowImplMswScreenSaver | |
CWindowImplWinRT | |
CWindowImplWinRTBasic | |
►Naudio | |
►Ncocoa | |
CAudioBufferListDeleter | |
CAudioBufferListShallowDeleter | |
CContextAudioUnit | |
CConverterImplCoreAudio | |
CDeviceManagerAudioSession | |
CDeviceManagerCoreAudio | |
CEffectAudioUnitNode | |
CExtAudioFileDeleter | |
CInputDeviceNodeAudioUnit | |
►CNodeAudioUnit | |
CRenderData | |
COutputDeviceNodeAudioUnit | |
CSourceFileCoreAudio | |
CTargetFileCoreAudio | |
►Ndsp | |
CBiquad | General filtering class (two-pole, two-zero) |
CConverter | A platform-specific converter that supports samplerate and channel conversion |
CConverterImplR8brain | Converter implementation using the r8brain samplerate conversion library by designed by Aleksey Vaneev |
CFft | Real Discrete Fourier Transform (DFT) |
CRingBufferT | Ringbuffer (aka circular buffer) data structure for use in concurrent audio scenarios |
CAddNode | Node for performing an addition operation on its input |
CAudioContextExc | Audio exception originating from within the Context |
CAudioDeviceExc | Audio exception related to Device management |
CAudioExc | General Audio exception |
CAudioFileExc | Audio exception related to file i/o |
CAudioFormatExc | Audio exception that occurs when the format of a Node leads to an irrecoverable error |
CBufferBaseT | Base class for the various Buffer classes. The template parameter T defined the sample type (precision) |
CBufferDynamicT | A resizable BufferT. The internally allocated buffer will grow as needed, but it will not shrink unless shrinkToFit() is called. TODO: enable move operator to convert BufferT to this |
CBufferInterleavedT | Audio buffer that stores its channels of type T in one interleaved array (ie. the first sample of channel 1 is directly after the first sample of channel 0) |
CBufferPlayerNode | Buffer-based SamplePlayerNode, where all samples are loaded into memory before playback |
CBufferRecorderNode | Records its inputs to a Buffer. The Buffer record size should be specified by the user (the default size is 44100 frames). Also supports writing the recorded samples to file |
CBufferSpectralT | A buffer that contains frequency domain audio data |
CBufferT | Audio buffer that stores its channels of type T contiguously (ie. the first sample of channel 1 is directly after the last sample of channel 0). Bounds checking is accomplished with assertions that are disabled in release mode by default |
CCallbackProcessorNode | InputNode that processes audio with a std::function callback |
►CChannelRouterNode | Node for mapping input channels to output channels |
CRoute | |
CRouteConnector | Used in conjunction with operator>> and the route() methods to make connections that conduct channel routing. This class is usually not directly constructed by the user |
CContext | Manages the creation, connections, and lifecycle of audio::Node's |
CDelayNode | General purpose delay line, supporting variable delay with linear interpolation |
►CDevice | Object representing a hardware audio device. There is only ever one device per hardware device reported by the system, for both input and output |
CFormat | Defines the format parameters that are settable when passed in with updateFormat() |
CDeviceManager | Platform-specific Singleton for managing hardware devices. Applications normally should not need to use this, but instead should use the equivalent methods from Device |
CDivideNode | Node for performing a division operation on its input |
CEvent | Class representing a sample-accurate parameter control instruction |
CFilePlayerNode | File-based SamplePlayerNode, where samples are constantly streamed from file. Suitable for large audio files |
CFilterBandPassNode | A band-pass filtering Node. This is a subclass of FilterBiquadNode and manages its configuration appropriately |
CFilterBiquadNode | General class for filtering nodes based on a biquad (two pole, two zero) filter |
CFilterHighPassNode | A high-pass filtering Node. This is a subclass of FilterBiquadNode and manages its configuration appropriately |
CFilterLowPassNode | A low-pass filtering Node. This is a subclass of FilterBiquadNode and manages its configuration appropriately |
CFreeDeleter | Simple functor wrapping free(), suitable for unique_ptr's that allocate memory with malloc, calloc and realloc |
CGainNode | Node for changing the gain, or amplitude, of a signal |
CGenNode | Base class for InputNode's that generate audio samples. Gen's are always mono channel |
CGenNoiseNode | Noise generator |
CGenOscNode | General purpose, band-limited oscillator using wavetable lookup |
CGenPhasorNode | Phase generator, i.e. ramping waveform that runs from 0 to 1 |
CGenPulseNode | Pulse waveform generator with variable pulse width. Based on wavetable lookup of two band-limited sawtooth waveforms, subtracted from each other |
CGenSineNode | Sine waveform generator |
CGenTableNode | Basic table-lookup oscillator |
CGenTriangleNode | Triangle waveform generator |
CInputDeviceNode | Interface representing a Node that communicates with a hardware input device. This is typically a microphone or a 'line-in' on an audio interface |
CInputNode | InputNode is the base class for Node's that produce audio. It cannot have any inputs |
CMathNode | Base class for an arithmetic based Node |
►CMonitorNode | Node for retrieving time-domain audio PCM samples |
CFormat | |
►CMonitorSpectralNode | A Scope that performs spectral (Fourier) analysis |
CFormat | |
CMultiplyNode | Node for performing a mulitplication operation on its input |
►CNode | Fundamental building block for creating an audio processing graph |
CFormat | |
CNodeAutoPullable | Node that can be pulled without being connected to any outputs |
CNodeCycleExc | |
COutputDeviceNode | Interface representing a Node that communicates with a hardware output device. This is typically speakers or a 'line-out' on an audio interface |
COutputNode | Base class for Node's that consume an audio signal, for example speakers. It cannot have any outputs |
CPan2dNode | Simple stereo panning using an equal power cross-fade. The panning position is specified by a single position between the left and right speakers |
►CParam | Allows an audio parameter to be controlled over time with sample accuracate curves |
COptions | Optional parameters when applying or appending ramps |
CSamplePlayerNode | Base Node class for sampled audio playback. Can do operations like seek and loop |
CSampleRecorderNode | Base Node class for recording audio samples. Inherits from NodeAudioPullable, and therefore does not need to be connected to an output |
CScopedEnableContext | RAII-style utility class to set a Context's enabled state and have it restored at the end of the current scope block |
CScopedEnableNode | RAII-style utility class to set a Node's enabled state and have it restored at the end of the current scope block |
CSource | Base class that is used to load and read from an audio source |
CSourceFile | Loads and reads from an audio file source |
CSourceFileOggVorbis | SourceFile implementation for decoding ogg vorbis files |
CSubtractNode | Node for performing a subtration operation on its input |
CTargetFile | Base class that is used to create and write to an audio destination. Currently only supports .wav encoding |
►CVoice | Interface for performing high-level audio playback tasks |
COptions | Optional parameters passed into Voice::create() methods |
CVoiceCallbackProcessor | Concrete Voice for processing audio with a callback function |
CVoiceSamplePlayerNode | Concrete Voice for sample playback |
CWaveTable | Manages a table that is used for wavetable synthesis. Supports table lookup with linear interpolation |
CWaveTable2d | Manages an array of tables that is used for bandlimited wavetable synthesis. Supports table lookup with linear interpolation |
►Ncocoa | |
CImageSourceCgImage | |
CImageTargetCgImage | |
CSafeNsAutoreleasePool | Represents an exception-safe NSAutoreleasePool. Replaces the global NSAutoreleasePool for its lifetime |
CSafeNsData | Represents an exception-safe Cocoa NSData which behaves like a shared_ptr but can implicitly cast itself to NSData* |
CSafeNsString | Represents an exception-safe Cocoa NSString which behaves like a shared_ptr but can implicitly cast itself to NSString* |
CSafeUiImage | A class which encapsulate a UIImage and an associated CGImageRef in order to work around memory ownership ambiguities in Cocoa Touch |
►Ndx | |
CDrawingTooManyVerticesException | |
CException | |
CExceptionUnknownTarget | |
CHlslDuplicateCBufferExc | |
CHlslNullProgramExc | |
►CHlslProg | Represents a DirectX HLSL shader. Implicitly shared object |
CCbo | |
CObj | |
CHlslProgCompileExc | |
CLight | |
►CRenderTarget | Represents an DirectX RenderTarget object |
CFormat | |
CObj | |
CRenderTargetException | |
CRenderTargetExceptionInvalidSpecification | |
CSurfaceConstraintsGLTexture | |
►CTexture | Represents an OpenGL Texture. Implicitly shared object |
CFormat | |
CTextureDataExc | |
►CTextureFont | |
CDrawOptions | |
CFormat | |
CGlyphInfo | |
►CVbo | |
CObj | |
CVboExc | |
CVboFailedMapExc | |
CVboFailedUnmapExc | |
CVboInvalidTargetExc | |
►CVboMesh | |
CLayout | |
CObj | |
►CVertexIter | |
CObj | |
►Ngl | |
CBoolState | Convenience class designed to push and pop a boolean OpenGL state |
CClientBoolState | Convenience class designed to push and pop a boolean OpenGL state |
►CDisplayList | |
CObj | |
CException | |
CExceptionUnknownTarget | |
►CFbo | Represents an OpenGL Framebuffer Object. //! Represents an instance of a font at a point size. Implicitly shared object |
CFormat | |
CObj | |
CFboException | |
CFboExceptionInvalidSpecification | |
CGlslNullProgramExc | |
►CGlslProg | Represents an OpenGL GLSL program. Implicitly shared object |
CObj | |
CGlslProgCompileExc | |
CLight | |
CMaterial | |
CRenderbuffer | Represents an OpenGL Renderbuffer, used primarily in conjunction with FBOs. Supported on OpenGL ES but multisampling is currently ignored. Implicitly shared object |
CSaveColorState | Convenience class designed to push and pop the current color |
CSaveFramebufferBinding | Convenience class which pushes and pops the currently bound framebuffer |
CSaveTextureBindState | Convenience class designed to push and pop the currently bound texture for a given texture unit |
CStereoAutoFocuser | |
CSurfaceConstraintsGLTexture | |
►CTexture | Represents an OpenGL Texture. Implicitly shared object |
CFormat | |
CObj | |
►CTextureCache | |
CObj | |
CTextureDataExc | |
►CTextureFont | |
CDrawOptions | |
CFormat | |
CGlyphInfo | |
CTileRender | |
►CVbo | |
CObj | |
CVboExc | |
CVboFailedMapExc | |
CVboFailedUnmapExc | |
CVboInvalidTargetExc | |
►CVboMesh | |
CLayout | |
CObj | |
►CVertexIter | |
CObj | |
►Nip | |
CAdaptiveThresholdT | |
►Nparams | |
►CInterfaceGl | Interface for adding params to your window. Wraps AntTweakBar |
COptions | Provides chainable options, returned from addParam() |
COptionsBase | Base class for chainable options |
►Nqtime | |
CImageTargetCvPixelBuffer | |
►CMovieBase | |
CObj | |
►CMovieGl | QuickTime movie playback as OpenGL textures Textures are always bound to the GL_TEXTURE_RECTANGLE_ARB target |
CObj | |
►CMovieLoader | |
CObj | |
►CMovieSurface | |
CObj | |
►CMovieWriter | Outputs QuickTime movies |
CFormat | Defines the encoding parameters of a MovieWriter |
CMovieWriterExc | |
CMovieWriterExcAlreadyFinished | |
CMovieWriterExcFrameEncode | |
CMovieWriterExcInvalidPath | |
CQuickTimeErrorLoadingExc | |
CQuickTimeExc | |
CQuickTimeExcFft | |
CQuickTimeExcUrlInvalid | |
CQuickTimeFileInvalidExc | |
CQuickTimePathInvalidExc | |
►Nsvg | |
CCircle | SVG Circle element: http://www.w3.org/TR/SVG/shapes.html#CircleElement |
CDoc | Represents an SVG Document. See SVG Document Structure http://www.w3.org/TR/SVG/struct.html |
CEllipse | SVG Ellipse element: http://www.w3.org/TR/SVG/shapes.html#EllipseElement |
CExc | SVG Exception base-class |
CExcChildNotFound | |
CFloatParseExc | |
►CGradient | Base class for SVG Gradients. See SVG Gradients: http://www.w3.org/TR/SVG/pservers.html#Gradients |
CStop | |
CGroup | Represents a group of SVG elements. http://www.w3.org/TR/SVG/struct.html#Groups |
CImage | SVG Image Element. Represents an unpremultiplied bitmap. http://www.w3.org/TR/SVG/struct.html#ImageElement |
CLine | SVG Line element: http://www.w3.org/TR/SVG/shapes.html#LineElement |
CLinearGradient | SVG Linear gradient |
CNode | Base class for an element of an SVG Document |
CPaint | SVG Paint specification for fill or stroke, including solids and gradients |
CPath | SVG Path element: http://www.w3.org/TR/SVG/paths.html#PathElement |
CPathParseExc | |
CPolygon | SVG Polygon Element: http://www.w3.org/TR/SVG/shapes.html#PolygonElement |
CPolyline | SVG Polyline Element: http://www.w3.org/TR/SVG/shapes.html#PolylineElement |
CRadialGradient | SVG Radial gradient |
CRect | SVG Rect element: http://www.w3.org/TR/SVG/shapes.html#RectElement |
CRenderer | Base class from which Renderers are derived |
CStyle | SVG Style for a node. Corresponds to SVG Styling: http://www.w3.org/TR/SVG/styling.html |
CText | SVG Text element. http://www.w3.org/TR/SVG/text.html#TextElement |
►CTextSpan | SVG tspan Element. Generally owned by a svg::Text Node. http://www.w3.org/TR/SVG/text.html#TSpanElement |
CAttributes | |
CTransformParseExc | |
CUse | SVG Use Element, which instantiates a different element: http://www.w3.org/TR/SVG/struct.html#UseElement |
CValue | SVG Value/Unit pair |
CValueExc | |
CAnim | |
CAnimBase | |
CArcball | |
CArea | |
CAxisAlignedBox3f | |
CBandedMatrix | |
CBSpline | |
CBSplineBasis | |
CBuffer | |
CCallbackMgr | Implements a utility class for maintaining a list of callbacks |
CCamera | |
CCameraOrtho | |
CCameraPersp | |
CCameraStereo | |
►CCapture | |
CDevice | |
CObj | |
CCaptureExc | |
CCaptureExcInitFail | |
CCaptureExcInvalidChannelOrder | |
CCaptureImplAvFoundationDevice | |
CCaptureImplCocoaDummyDevice | This class implements a stubbed-out Capture implementation in order to allow an iOS app which requires capture support to run in the simulator |
►CCaptureImplDirectShow | |
CDevice | |
CCaptureImplQtKitDevice | |
►CChannelT | A single channel of image data, either a color channel of a Surface or a grayscale image. Implicitly shared object |
CConstIter | Convenience class for iterating the pixels of a Channel. The iteration is const , performing read-only operations on the Channel |
CIter | Convenience class for iterating the pixels of a Channel |
CCHANTRAIT | |
CCHANTRAIT< float > | |
CCHANTRAIT< uint16_t > | |
CCHANTRAIT< uint8_t > | |
Ccinder_stream_bidirectional_device | |
Ccinder_stream_sink | |
Ccinder_stream_source | |
CClipboard | Singleton representing the system's clipboard |
CColorAT | |
CColorT | |
CCompareNode | |
CConcurrentCircularBuffer | |
CCue | |
CDataSource | |
CDataSourceBuffer | |
CDataSourcePath | |
CDataSourceUrl | |
CDataTarget | |
CDataTargetPath | |
CDataTargetStream | |
CDisplay | |
CEaseInAtan | Easing equation for an atan ease-in, accelerating from zero velocity. Functor edition. Used by permssion from Chris McKenzie |
CEaseInBack | Easing equation for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) ease-in, accelerating from zero velocity. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseInBounce | Easing equation for a bounce (exponentially decaying parabolic bounce) ease-in, accelerating from zero velocity. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseInCirc | Easing equation for a circular (sqrt(1-t^2)) ease-in, accelerating from zero velocity. Functor edition |
CEaseInCubic | Easing equation function for a cubic (t^3) ease-in, accelerating from zero velocity. Functor edition |
CEaseInElastic | Easing equation for an elastic (exponentially decaying sine wave) ease-in, accelerating from zero velocity. Functor edition |
CEaseInExpo | Easing equation for an exponential (2^t) ease-in, accelerating from zero velocity. Functor edition |
CEaseInOutAtan | Easing equation for an atan ease-in/out, accelerating until halfway, then decelerating. Functor edition. Used by permssion from Chris McKenzie |
CEaseInOutBack | Easing equation for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) ease-in/out, accelerating until halfway, then decelerating. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseInOutBounce | Easing equation for a bounce (exponentially decaying parabolic bounce) ease-in/out, accelerating until halfway, then decelerating. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseInOutCirc | Easing equation for a circular (sqrt(1-t^2)) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutCubic | Easing equation for a cubic (t^3) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutElastic | Easing equation for an elastic (exponentially decaying sine wave) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutExpo | Easing equation for an exponential (2^t) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutQuad | Easing equation for a quadratic (t^2) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutQuart | Easing equation for a quartic (t^4) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutQuint | Easing equation for a quintic (t^5) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInOutSine | Easing equation for a sinusoidal (sin(t)) ease-in/out, accelerating until halfway, then decelerating. Functor edition |
CEaseInQuad | Easing equation for a quadratic (t^2) ease-in, accelerating from zero velocity. Functor edition |
CEaseInQuart | Easing equation for a quartic (t^4) ease-in, accelerating from zero velocity. Functor edition |
CEaseInQuint | Easing equation function for a quintic (t^5) ease-in, accelerating from zero velocity. Functor edition |
CEaseInSine | Easing equation for a sinusoidal (sin(t)) ease-in, accelerating from zero velocity. Functor edition |
CEaseNone | Easing equation for a simple linear tweening with no easing. Functor edition |
CEaseOutAtan | Easing equation for an atan ease-out, decelerating from zero velocity. Functor edition. Used by permssion from Chris McKenzie |
CEaseOutBack | Easing equation for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) ease-out, decelerating from zero velocity. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseOutBounce | Easing equation for a bounce (exponentially decaying parabolic bounce) ease-out, decelerating from zero velocity. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseOutCirc | Easing equation for a circular (sqrt(1-t^2)) ease-out, decelerating from zero velocity. Functor edition |
CEaseOutCubic | Easing equation for a cubic (t^3) ease-out, decelerating to zero velocity. Functor edition |
CEaseOutElastic | Easing equation for an elastic (exponentially decaying sine wave) ease-out, decelerating from zero velocity. Functor edition |
CEaseOutExpo | Easing equation for an exponential (2^t) ease-out, decelerating from zero velocity. Functor edition |
CEaseOutInBack | Easing equation for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) ease-out/in, decelerating until halfway, then accelerating. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseOutInBounce | Easing equation for a bounce (exponentially decaying parabolic bounce) ease-out/in, decelerating until halfway, then accelerating. Functor edition. The a parameter controls overshoot, the default producing a 10% overshoot |
CEaseOutInCirc | Easing equation for a circular (sqrt(1-t^2)) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInCubic | Easing equation for a cubic (t^3) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInElastic | Easing equation for an elastic (exponentially decaying sine wave) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInExpo | Easing equation for an exponential (2^t) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInQuad | Easing equation for a quadratic (t^2) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInQuart | Easing equation for a quartic (t^4) ease-out/in, decelerating until halfway, then accelerating. Funtor edition |
CEaseOutInQuint | Easing equation for a quintic (t^5) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutInSine | Easing equation for a sinusoidal (sin(t)) ease-out/in, decelerating until halfway, then accelerating. Functor edition |
CEaseOutQuad | Easing equation for a quadratic (t^2) ease-out, decelerating to zero velocity. Functor edition |
CEaseOutQuart | Easing equation for a quartic (t^4) ease-out, decelerating to zero velocity. Functor edition; |
CEaseOutQuint | Easing equation function for a quintic (t^5) ease-in, accelerating from zero velocity. Functor edition |
CEaseOutSine | Easing equation for a sinusoidal (sin(t)) easing out, decelerating from zero velocity. Functor edition |
CException | |
CFilterBase | |
CFilterBesselBlackman | |
CFilterBox | |
CFilterCatmullRom | |
CFilterCubic | |
CFilterGaussian | |
CFilterMitchell | |
CFilterQuadratic | |
CFilterSincBlackman | |
CFilterTriangle | |
CFnTween | |
CFnTweenRef | |
CFont | Represents an instance of a font at a point size. Implicitly shared object |
CFontGlyphFailureExc | |
CFontInvalidNameExc | |
CFrustum | |
CImageIo | |
CImageIoException | |
CImageIoExceptionFailedLoad | |
CImageIoExceptionFailedWrite | |
CImageIoExceptionIllegalChannelOrder | |
CImageIoExceptionIllegalColorModel | |
CImageIoExceptionIllegalDataType | |
CImageIoExceptionUnknownExtension | |
CImageIoRegistrant | |
CImageIoRegistrar | |
►CImageSource | |
COptions | Optional parameters passed when creating an Image |
CImageSourceFileQuartz | |
CImageSourceFileQuartzExceptionUnsupportedData | |
CImageSourceFileWic | |
CImageSourceFileWicExceptionUnsupportedData | |
CImageSourcePng | |
CImageSourcePngException | |
►CImageTarget | |
COptions | |
CImageTargetFileQuartz | |
CImageTargetFileWic | |
CIoStream | |
CIoStreamFile | |
CIStreamCinder | |
CIStreamFile | |
CIStreamMem | |
CIStreamStateRestore | |
CIStreamUrl | |
CIStreamUrlImplCocoa | |
CIStreamUrlImplCurl | |
CIStreamUrlImplWinInet | |
►CJsonTree | |
CExcChildNotFound | Exception expressing the absence of an expected child node |
CException | Base class for JsonTree exceptions |
CExcJsonParserError | Exception expressing the existence of errors when serializing or deserializing JSON |
CExcNonConvertible | Exception expressing the inability to convert a node's value to a requested type |
CParseOptions | Options for JSON parsing. Passed to the JsonTree constructor |
CWriteOptions | Options for JSON writing. Passed to the write method |
CKdNode | |
CKdTree | |
Cmath | |
Cmath< float > | |
CMatrix22 | |
CMatrix33 | |
CMatrix44 | |
CMatrixAffine2 | Represents a two dimensional affine transformation |
CMatrixStack | |
CMayaCamUI | |
CNodeDataTraits | |
CNodeDataTraits< Vec2f > | |
CNodeDataVectorTraits | |
CNullLookupProc | |
►CObjLoader | Loads Alias|Wavefront .OBJ file format |
CFace | |
CGroup | |
CMaterial | |
COStream | |
COStreamFile | |
COStreamMem | |
CPath2d | |
CPath2dCalcCache | Accelerates the calculation of various operations on Path2d. Useful if doing repeated calculations, otherwise just use Path2d member functions |
CPath2dExc | |
CPerlin | |
CPlane | |
CPlaneExc | |
CPolyLine | |
CQUATCONV | |
CQuaternion | |
CRand | |
CRay | |
CRectMapping | |
CRectT | |
►CSerial | |
CDevice | |
CObj | |
CSerialExc | |
CSerialExcDeviceEnumerationFailed | |
CSerialExcOpenFailed | |
CSerialExcReadFailure | |
CSerialExcWriteFailure | |
CSerialTimeoutExc | |
CShape2d | |
CSphere | |
CStreamBase | |
CStreamExc | |
CStreamExcOutOfMemory | |
CSurfaceChannelOrder | Specifies the in-memory ordering of the channels of a Surface |
CSurfaceConstraints | Base class for defining the properties of a Surface necessary to be interoperable with different APIs |
CSurfaceConstraintsDefault | |
CSurfaceConstraintsExc | |
CSurfaceExc | |
►CSurfaceT | An in-memory representation of an image. Implicitly shared object |
CConstIter | Convenience class for iterating the pixels of a Surface. The iteration is const , performing read-only operations on the Surface |
CIter | Convenience class for iterating the pixels of a Surface |
CSvgRendererGl | |
►CSystem | Queries system software and hardware capabilities of the computer. Values are cached so there is low overhead in calling these functions more than once |
CNetworkAdapter | Represents a single Network Adapter of the system |
CSystemExc | |
CSystemExcFailedQuery | |
CTextBox | |
CTextLayout | |
CThreadSetup | Create an instance of this class at the beginning of any multithreaded code that makes use of Cinder functionality |
CTimeline | |
CTimelineItem | Base interface for anything that can go on a Timeline |
CTimer | A high-resolution timer class |
►CTriangulator | Converts an arbitrary Shape2d into a TriMesh2d |
CException | |
CTriMesh | |
CTriMesh2d | |
►CTween | |
COptions | |
►CTweenBase | |
COptions | |
CTweenRef | |
CUrl | |
CUrlLoadExc | Exception for failed Url loading |
CUrlOptions | Options for loadUrl() to dictate caching and timeout behavior |
CVec2 | |
CVec3 | |
CVec4 | |
►CXmlTree | |
CAttr | XML attribute |
CConstIter | A const iterator over the children of an XmlTree |
CExcAttrNotFound | Exception expressing the absence of an expected attribute |
CExcChildNotFound | Exception expressing the absence of an expected child node |
CException | Base class for XmlTree exceptions |
CExcUnknownNodeType | Exception implying an XML node of an unknown type. Implies a low-level problem communicating with RapidXML |
CIter | An iterator over the children of an XmlTree |
CParseOptions | Options for XML parsing. Passed to the XmlTree constructor |
►NDirectX | |
CDDS_HEADER | |
CDDS_HEADER_DXT10 | |
CDDS_PIXELFORMAT | |
Chandle_closer | |
CScopedObject | |
►NFontEnumeration | |
Csealed | |
►NShaders | |
►Nstd | |
CAppImplCocoaBasic | |
CAppImplCocoaRendererGl | |
CAppImplCocoaRendererQuartz | |
CAppImplCocoaScreenSaver | |
CAppImplCocoaTouchRendererGl | |
CAppImplCocoaTouchRendererQuartz | |
CCinderView | |
CCinderViewCocoaTouch | |
C<CinderViewCocoaTouchDelegate> | |
C<CinderViewDelegate> | |
CGLXBufferClobberEventSGIX | |
CGLXHyperpipeConfigSGIX | |
CGLXHyperpipeNetworkSGIX | |
CGLXPipeRect | |
CGLXPipeRectLimits | |
Csealed | |
CtagTOUCHINPUT | |
CWindowImplBasicCocoa | |
CWindowImplCocoaScreenSaver | |