Doodle3D-Core/src/reducer/d2/tools/shapes/circleSegmentReducer.js
2017-11-14 15:27:48 +01:00

9 lines
295 B
JavaScript

import circleReducer from './circleReducer.js';
import createDebug from 'debug';
const debug = createDebug('d3d:reducer:circleSegment');
export default function circleSegmentReducer(state, action) {
if (action.log !== false) debug(action.type);
return circleReducer(state, action, true);
}