Skip to content

Commit

Permalink
update to 0073
Browse files Browse the repository at this point in the history
remove deprecated
fix parameters with :: not being parsed correctly
  • Loading branch information
arturoc committed Dec 11, 2012
1 parent acc691a commit b98e617
Show file tree
Hide file tree
Showing 21 changed files with 593 additions and 492 deletions.
140 changes: 140 additions & 0 deletions _documentation/gl/ofGLRenderer.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,146 @@ _description: _



<!----------------------------------------------------------------------------->

###void loadIdentityMatrix(void)

<!--
_syntax: loadIdentityMatrix(void)_
_name: loadIdentityMatrix_
_returns: void_
_returns_description: _
_parameters: void_
_access: public_
_version_started: 0072_
_version_deprecated: _
_summary: _
_constant: False_
_static: no_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void loadMatrix(&m)

<!--
_syntax: loadMatrix(&m)_
_name: loadMatrix_
_returns: void_
_returns_description: _
_parameters: const ofMatrix4x4 &m_
_access: public_
_version_started: 0072_
_version_deprecated: _
_summary: _
_constant: False_
_static: no_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void loadMatrix(*m)

<!--
_syntax: loadMatrix(*m)_
_name: loadMatrix_
_returns: void_
_returns_description: _
_parameters: const float *m_
_access: public_
_version_started: 0072_
_version_deprecated: _
_summary: _
_constant: False_
_static: no_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void multMatrix(&m)

<!--
_syntax: multMatrix(&m)_
_name: multMatrix_
_returns: void_
_returns_description: _
_parameters: const ofMatrix4x4 &m_
_access: public_
_version_started: 0072_
_version_deprecated: _
_summary: _
_constant: False_
_static: no_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void multMatrix(*m)

<!--
_syntax: multMatrix(*m)_
_name: multMatrix_
_returns: void_
_returns_description: _
_parameters: const float *m_
_access: public_
_version_started: 0072_
_version_deprecated: _
_summary: _
_constant: False_
_static: no_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

### ofGLRenderer(useShapeColor = true)
Expand Down
1 change: 1 addition & 0 deletions _documentation/graphics/ofCairoRenderer.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2532,6 +2532,7 @@ _description: _




<!----------------------------------------------------------------------------->

###void setupGraphicDefaults()
Expand Down
147 changes: 141 additions & 6 deletions _documentation/graphics/ofGraphics_functions.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -1376,14 +1376,14 @@ _description: _

<!----------------------------------------------------------------------------->

###void ofDrawBitmapStringHighlight(text, &position, &background = ofColor
###void ofDrawBitmapStringHighlight(text, &position, &background = ofColor::black, &foreground = ofColor::white)

<!--
_syntax: ofDrawBitmapStringHighlight(text, &position, &background = ofColor_
_syntax: ofDrawBitmapStringHighlight(text, &position, &background = ofColor::black, &foreground = ofColor::white)_
_name: ofDrawBitmapStringHighlight_
_returns: void_
_returns_description: _
_parameters: string text, const ofPoint &position, const ofColor &background=ofColor_
_parameters: string text, const ofPoint &position, const ofColor &background=ofColor::black, const ofColor &foreground=ofColor::white_
_version_started: _
_version_deprecated: _
_summary: _
Expand All @@ -1403,14 +1403,14 @@ _description: _

<!----------------------------------------------------------------------------->

###void ofDrawBitmapStringHighlight(text, x, y, &background = ofColor
###void ofDrawBitmapStringHighlight(text, x, y, &background = ofColor::black, &foreground = ofColor::white)

<!--
_syntax: ofDrawBitmapStringHighlight(text, x, y, &background = ofColor_
_syntax: ofDrawBitmapStringHighlight(text, x, y, &background = ofColor::black, &foreground = ofColor::white)_
_name: ofDrawBitmapStringHighlight_
_returns: void_
_returns_description: _
_parameters: string text, int x, int y, const ofColor &background=ofColor_
_parameters: string text, int x, int y, const ofColor &background=ofColor::black, const ofColor &foreground=ofColor::white_
_version_started: _
_version_deprecated: _
_summary: _
Expand Down Expand Up @@ -2065,6 +2065,141 @@ _description: _



<!----------------------------------------------------------------------------->

###void ofLoadIdentityMatrix(void)

<!--
_syntax: ofLoadIdentityMatrix(void)_
_name: ofLoadIdentityMatrix_
_returns: void_
_returns_description: _
_parameters: void_
_version_started: _
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void ofLoadMatrix(&m)

<!--
_syntax: ofLoadMatrix(&m)_
_name: ofLoadMatrix_
_returns: void_
_returns_description: _
_parameters: const ofMatrix4x4 &m_
_version_started: _
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void ofLoadMatrix(*m)

<!--
_syntax: ofLoadMatrix(*m)_
_name: ofLoadMatrix_
_returns: void_
_returns_description: _
_parameters: const float *m_
_version_started: _
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void ofMultMatrix(&m)

<!--
_syntax: ofMultMatrix(&m)_
_name: ofMultMatrix_
_returns: void_
_returns_description: _
_parameters: const ofMatrix4x4 &m_
_version_started: _
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void ofMultMatrix(*m)

<!--
_syntax: ofMultMatrix(*m)_
_name: ofMultMatrix_
_returns: void_
_returns_description: _
_parameters: const float *m_
_version_started: _
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_visible: True_
_advanced: False_
-->

_description: _







<!----------------------------------------------------------------------------->

###void ofNextContour(bClose)
Expand Down
14 changes: 7 additions & 7 deletions _documentation/graphics/ofImage_.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -1120,7 +1120,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -1151,7 +1151,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -1182,7 +1182,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -1220,7 +1220,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -1258,7 +1258,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down Expand Up @@ -2083,7 +2083,7 @@ _version_started: 007_
_version_deprecated: _
_summary: _
_constant: False_
_static: False_
_static: no_
_visible: True_
_advanced: False_
-->
Expand Down
Loading

0 comments on commit b98e617

Please sign in to comment.