Proc Eng Shaping Machines Entities
Extruder (Piston)
- Preview
- Usage
- Definition
import { ExtruderPiston } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<ExtruderPiston/>
// or
import { extendStyle } from "@dinghy/base-components";
import { EXTRUDER_PISTON } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, EXTRUDER_PISTON)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.extruder_(piston);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 110,
_height: 60,
}
Extruder (Screw)
- Preview
- Usage
- Definition
import { ExtruderScrew } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<ExtruderScrew/>
// or
import { extendStyle } from "@dinghy/base-components";
import { EXTRUDER_SCREW } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, EXTRUDER_SCREW)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.extruder_(screw);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 110,
_height: 60,
}
Pelletizing Disc
- Preview
- Usage
- Definition
import { PelletizingDisc } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<PelletizingDisc/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PELLETIZING_DISC } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, PELLETIZING_DISC)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.pelletizing_disc;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 60,
}
Press (Piston)
- Preview
- Usage
- Definition
import { PressPiston } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<PressPiston/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PRESS_PISTON } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, PRESS_PISTON)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.press_(piston);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 60,
}
Press (Roller)
- Preview
- Usage
- Definition
import { PressRoller } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<PressRoller/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PRESS_ROLLER } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, PRESS_ROLLER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.press_(roller);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 60,
}
Shaping Machine (Horizontal)
- Preview
- Usage
- Definition
import { ShapingMachineHorizontal } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<ShapingMachineHorizontal/>
// or
import { extendStyle } from "@dinghy/base-components";
import { SHAPING_MACHINE_HORIZONTAL } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, SHAPING_MACHINE_HORIZONTAL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.shaping_machine_(horizontal);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 60,
}
Shaping Machine (Vertical)
- Preview
- Usage
- Definition
import { ShapingMachineVertical } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<ShapingMachineVertical/>
// or
import { extendStyle } from "@dinghy/base-components";
import { SHAPING_MACHINE_VERTICAL } from '@dinghy/diagrams/entitiesProcEngShapingMachines'
<Shape
{...props}
_style={extendStyle(props, SHAPING_MACHINE_VERTICAL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.shaping_machines.shaping_machine_(vertical);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 60,
}