All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.mihosoft.vrl.v3d.samples.ServoMountPixy Maven / Gradle / Ivy

There is a newer version: 0.5.7
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package eu.mihosoft.vrl.v3d.samples;

import eu.mihosoft.vrl.v3d.CSG;
import eu.mihosoft.vrl.v3d.Cube;
import eu.mihosoft.vrl.v3d.Extrude;
import eu.mihosoft.vrl.v3d.FileUtil;
import eu.mihosoft.vrl.v3d.Transform;
import eu.mihosoft.vrl.v3d.Vector3d;
import java.io.IOException;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

/**
 *
 * @author miho
 */
public class ServoMountPixy {

    // mini servo
//    private double servoWidth = 22.9;
//    private double servoThickness = 12.0;
//    
    //standard servo
    private double servoWidth = 40.5;
    private double servoThickness = 19.0;
    private double borderThickness = 3.0;
    private double overlap = 3;
    private double servoMountHeight = 20;

    private double boardMountingThickness = 3;
    private double boardHolder1Length = 12;
    private double boardHolder2Length = 16;

    private double boardMountingWidth = 8.1;

    private double pegHeight = 1;
    private double pegToothHeight = 0.6;
    private double pegOverlap = 0.5;

    public CSG toCSGSimple() {

        return Extrude.points(new Vector3d(0, 0, servoMountHeight),
                new Vector3d(0, servoThickness),
                new Vector3d(overlap, servoThickness),
                new Vector3d(-borderThickness, servoThickness + borderThickness),
                new Vector3d(-borderThickness, -borderThickness),
                new Vector3d(servoWidth + borderThickness, -borderThickness),
                new Vector3d(servoWidth + borderThickness, servoThickness + borderThickness),
                new Vector3d(servoWidth - overlap, servoThickness),
                new Vector3d(servoWidth, servoThickness),
                new Vector3d(servoWidth, 0),
                new Vector3d(0, 0)
        );
    }

    public CSG toCSG() {
        Transform bm1Transform = Transform.unity().rotY(90).rotZ(90).translate(borderThickness, borderThickness, -boardHolder1Length + borderThickness);
        CSG bm1 = boardMount1().transformed(bm1Transform);
        Transform bm2Transform = Transform.unity().translateX(servoWidth - boardHolder1Length + borderThickness * 2);
        CSG bm2 = boardMountWithPixy().transformed(bm1Transform).transformed(bm2Transform);
        CSG sm = toCSGSimple();

        return sm.union(bm1).union(bm2);//.transformed(Transform.unity().scale(0.08));
    }

    private CSG boardMount1() {
        return boardMount(boardHolder1Length);
    }

    private CSG boardMount2() {
        return boardMount(boardHolder2Length);
    }

    private CSG boardMountWithPixy() {
        return boardMount2().union(pixyMount());
    }

    private CSG pixyMount() {

        double pixyBoardThickness = 2;

        double camHeight = 60;
        double camHolderHeight = 20;
//        
//        double outerThickness = boardHolder2Length*0.5-boardHolder2Length*0.5;
//        double innerThickness = pixyBoardThickness;
//        return pixyMountBase(
//                outerThickness).
//                union(pixyMountBase(innerThickness).transformed(Transform.unity().translateZ(outerThickness)));

        CSG pixyBoard = new Cube(50, 50, pixyBoardThickness).toCSG();

        pixyBoard = pixyBoard.transformed(
                Transform.unity().translate(
                        camHeight + camHolderHeight + boardMountingThickness + borderThickness * 4,
                        pixyBoard.getBounds().getBounds().y * 0.5, boardHolder2Length * 0.5));

        return pixyMountBase().difference(pixyBoard);
    }

    private CSG pixyMountBase() {

        double h = boardMountingWidth;

        double camHeight = 60;
        double camHolderHeight = 20;
        double camWidth = 53;
        double outerPiMountWidth = 60;
        double camOverlap = 10;
        double upperCamOverlap = 3;
        double camHolderWidth = 10;

        double breadBoardHeight = 26;
        double breadBoardThickness = 9;
        
        double breadBoardOverlap = 14.5;
        
        double bottomThickness = 3;

        List points = Arrays.asList(
                new Vector3d(boardMountingThickness + borderThickness, -borderThickness),
                new Vector3d(boardMountingThickness + borderThickness + camHeight + camHolderHeight, -borderThickness),
                new Vector3d(boardMountingThickness + borderThickness + camHeight + camHolderHeight, 0 + upperCamOverlap),
                new Vector3d(boardMountingThickness + borderThickness + camHeight, (outerPiMountWidth - camWidth) + camOverlap),
                new Vector3d(boardMountingThickness + borderThickness + camHeight - borderThickness, (outerPiMountWidth - camWidth) + camOverlap),
                new Vector3d(boardMountingThickness + borderThickness + camHeight - borderThickness - camHolderWidth, 0),
                // -> (breadboard)
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight + breadBoardThickness + borderThickness + bottomThickness, 0),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight + breadBoardThickness + borderThickness, breadBoardOverlap),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight + breadBoardThickness, breadBoardOverlap),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight + breadBoardThickness, 0),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight , 0),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight , breadBoardOverlap),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight - borderThickness, breadBoardOverlap),
                new Vector3d(boardMountingThickness + borderThickness + breadBoardHeight - borderThickness - bottomThickness, 0),
                // <-
                new Vector3d(boardMountingThickness - pegOverlap + borderThickness, 0),
                new Vector3d(boardMountingThickness, h),
                new Vector3d(boardMountingThickness, 0)
        );

        Collections.reverse(points);

        return Extrude.points(new Vector3d(0, 0, boardHolder2Length),
                points
        );
    }

    private CSG boardMount(double boardHolderLength) {
        
        double bottomThickness = 3;

        double h = boardMountingWidth;

        List points = Arrays.asList(
                Vector3d.ZERO,
                new Vector3d(0, -borderThickness),
                new Vector3d(boardMountingThickness + borderThickness + bottomThickness, -borderThickness),
                new Vector3d(boardMountingThickness + borderThickness, h + pegToothHeight + pegHeight),
                new Vector3d(boardMountingThickness - pegOverlap, h + pegToothHeight+pegHeight*0.25),
                new Vector3d(boardMountingThickness - pegOverlap, h + pegToothHeight),
                new Vector3d(boardMountingThickness, h),
                new Vector3d(boardMountingThickness, 0)
        );

        Collections.reverse(points);

        return Extrude.points(new Vector3d(0, 0, boardHolderLength),
                points
        );
    }

    public static void main(String[] args) throws IOException {

        ServoMountPixy sMount = new ServoMountPixy();

        // save union as stl
//        FileUtil.write(Paths.get("sample.stl"), new ServoHead().servoHeadFemale().transformed(Transform.unity().scale(1.0)).toStlString());
        FileUtil.write(Paths.get("servo-mount-pixy.stl"), sMount.toCSG().toStlString());

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy