File tree 40 files changed +400
-58
lines changed 40 files changed +400
-58
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change @@ -16,5 +16,4 @@ export * from "./babylon-webxr";
16
16
export * from "./scene-inputs" ;
17
17
export * from "./node-inputs" ;
18
18
export * from "./draw-inputs" ;
19
- export * from "@bitbybit-dev/base/lib/api/inputs" ;
20
19
export * from "@bitbybit-dev/core/lib/api/inputs/inputs" ;
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ export * from "./point-inputs";
6
6
export * from "./text-inputs" ;
7
7
export * from "./vector-inputs" ;
8
8
export * from "./transforms-inputs" ;
9
+ export * from "./base-inputs" ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ export * from "./logic-inputs";
4
4
export * from "./math-inputs" ;
5
5
export * from "./point-inputs" ;
6
6
export * from "./text-inputs" ;
7
- export * from "./base-inputs" ;
8
7
export * from "./text-inputs" ;
9
8
export * from "./vector-inputs" ;
10
9
export * from "./transforms-inputs" ;
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
import { MathBitByBit } from "./math" ;
3
3
4
4
export class Color {
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
3
3
export class GeometryHelper {
4
4
Original file line number Diff line number Diff line change 1
1
import { Lists } from "./lists" ;
2
- import * as Inputs from "../inputs/inputs " ;
2
+ import * as Inputs from "../inputs" ;
3
3
4
4
describe ( "Lists unit tests" , ( ) => {
5
5
let lists : Lists ;
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
3
3
/**
4
4
* Contains various list methods.
Original file line number Diff line number Diff line change 1
1
import { Logic } from "./logic" ;
2
- import * as Inputs from "../inputs/inputs " ;
2
+ import * as Inputs from "../inputs" ;
3
3
4
4
describe ( "Logic unit tests" , ( ) => {
5
5
let logic : Logic ;
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
3
3
/**
4
4
* Contains various logic methods.
Original file line number Diff line number Diff line change 1
1
import { MathBitByBit } from "./math" ;
2
- import * as Inputs from "../inputs/inputs " ;
2
+ import * as Inputs from "../inputs" ;
3
3
4
4
describe ( "Math unit tests" , ( ) => {
5
5
let math : MathBitByBit ;
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
3
3
/**
4
4
* Contains various math methods.
Original file line number Diff line number Diff line change 1
1
import { GeometryHelper } from "./geometry-helper" ;
2
- import * as Inputs from "../inputs/inputs" ;
3
- import { Base } from "../inputs/inputs" ;
2
+ import * as Inputs from "../inputs" ;
4
3
import { Transforms } from "./transforms" ;
5
4
6
5
/**
@@ -252,7 +251,7 @@ export class Point {
252
251
* @shortname average point
253
252
* @drawable true
254
253
*/
255
- averagePoint ( inputs : Inputs . Point . PointsDto ) : Base . Point3 {
254
+ averagePoint ( inputs : Inputs . Point . PointsDto ) : Inputs . Base . Point3 {
256
255
const xVals = [ ] ;
257
256
const yVals = [ ] ;
258
257
const zVals = [ ] ;
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
3
3
/**
4
4
* Contains various text methods.
Original file line number Diff line number Diff line change 1
1
2
2
import { Base } from "../inputs/base-inputs" ;
3
- import * as Inputs from "../inputs/inputs " ;
3
+ import * as Inputs from "../inputs" ;
4
4
import { MathBitByBit } from "./math" ;
5
5
import { Vector } from "./vector" ;
6
6
Original file line number Diff line number Diff line change 1
- import * as Inputs from "../inputs/inputs " ;
1
+ import * as Inputs from "../inputs" ;
2
2
import { GeometryHelper } from "./geometry-helper" ;
3
3
import { MathBitByBit } from "./math" ;
4
4
import { Vector } from "./vector" ;
Original file line number Diff line number Diff line change 1
1
2
- import * as Inputs from "../inputs/inputs " ;
2
+ import * as Inputs from "../inputs" ;
3
3
import { GeometryHelper } from "./geometry-helper" ;
4
4
import { MathBitByBit } from "./math" ;
5
5
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ export * from "./verb-inputs";
8
8
export * from "@bitbybit-dev/jscad/lib/api/inputs/jscad-inputs" ;
9
9
export * from "@bitbybit-dev/manifold/lib/api/inputs/manifold-inputs" ;
10
10
export * from "@bitbybit-dev/occt/lib/api/inputs/occ-inputs" ;
11
- export * from "@bitbybit-dev/occt/lib/api/inputs/base-inputs" ;
11
+ export * from "@bitbybit-dev/occt/lib/api/inputs/base-inputs" ;
12
+ export * from "@bitbybit-dev/base/lib/api/inputs/inputs" ;
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change 1
1
export * from "./jscad-inputs" ;
2
- export * from "@bitbybit-dev/base/lib/api/inputs/inputs " ;
2
+ export * from "@bitbybit-dev/base/lib/api/inputs" ;
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
Original file line number Diff line number Diff line change 2
2
3
3
Visit [ bitbybit.dev] ( https://bitbybit.dev ) to use our full cloud platform.
4
4
Best way to support us - [ Silver or Gold plan subscription] ( https://bitbybit.dev/auth/pick-plan )
5
- Buy unique designs from our [ Crafts shop] ( https://crafts.bitbybit.dev )
6
- Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 )
5
+ Buy unique products from our [ Crafts shop] ( https://crafts.bitbybit.dev ) all designed with Bitbybit algorithms
6
+ Check out [ 3D Bits app for Shopify] ( https://apps.shopify.com/3d-bits-1 ) also used in our Crafts shop
7
7
8
8
<img src =" https://app.bitbybit.dev/assets/git-cover.png " alt =" Picture showing bitbybit.dev platform " >
9
9
You can’t perform that action at this time.
0 commit comments