In our studio we design high quality polygonal 3d models for CNC machines or 3d printers according to your preferences.
Vendor: 3d-48890
Category: SHAPES
Reminder!
Order delivery time is 5-7 working days after payment
The link is sent to your email or messenger
Geometric Shape; public class Rectangle extends GeometricShape { private double width; private double height; public Rectangle(double width, double height) { this.width = width; this.height = height; } public double getWidth() { return width; } public void setWidth(double width) { this.width = width; } public double getHeight() { return height; } public void setHeight(double height) { this.height = height; } @Override public double calculateArea() { return width * height; } @Override public double calculatePerimeter() { return 2 * (width + height); } }
for CNC and 3D printers.