setDrawColor method
- Color value
Sets the current drawing color.
Implementation
void setDrawColor(Color value) {
if (_drawColor == value) return;
_drawColor = value;
_contracts.markSceneGeometryChanged();
_contracts.notifyNow();
}
Sets the current drawing color.
void setDrawColor(Color value) {
if (_drawColor == value) return;
_drawColor = value;
_contracts.markSceneGeometryChanged();
_contracts.notifyNow();
}