Skip to content

Commit 67547b3

Browse files
authored
More link updates (#570)
* Update link. * Update link. * Update Frank's link.
1 parent 2a442f8 commit 67547b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content/posts/api-first-approach.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Our products aren't 3D modeling software suites. We make tools that allow any so
1818

1919
To support any application big or small, KittyCAD's functionality is broken up into many individual services, called endpoints. This is our API, and it allows developers to build in only the functionality they need, and leave out whatever they don’t.
2020

21-
You may build a file converter app just using our [convert](https://zoo.dev/docs/api/file/convert-cad-file-with-defaults) API endpoint, while someone building a full-featured CAD suite may use our [design endpoints](https://zoo.dev/docs/api/modeling/open-a-websocket-which-accepts-modeling-commands) to let their users generate 3D models through a traditional user interface. Both these developers got only the features they needed, and both haven't had to think about the complexities of CAD file formats, [rendering engines](https://zoo.dev/geometry-engine), or most of the other thorny problems of building hardware design tools. That's what KittyCAD is for.
21+
You may build a file converter app just using our [convert](https://zoo.dev/docs/api/file/convert-cad-file-with-defaults) API endpoint, while someone building a full-featured CAD suite may use our [design endpoints](https://zoo.dev/docs/api/modeling/open-a-websocket-which-accepts-modeling-commands) to let their users generate 3D models through a traditional user interface. Both these developers got only the features they needed, and both haven't had to think about the complexities of CAD file formats, [rendering engines](https://zoo.dev/research/zoo-cad-engine-overview), or most of the other thorny problems of building hardware design tools. That's what KittyCAD is for.
2222

2323

2424
## The problem with selling a user interface

content/posts/text-to-cad-blender-addon.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ So glad you asked! Our CEO Jessie Frazelle has actually already written a nice [
1717

1818
TL;DR Text-to-CAD transforms text into editable CAD models, distinct from 3D meshes by generating B-Rep surfaces for compatibility with CAD programs.
1919
### Getting Started
20-
To use the Text-to-CAD Blender add-on, users need to have [Blender](https://www.blender.org/) installed and acquire an [API token from Zoo.dev](https://zoo.dev/account/api-tokens). The add-on is straightforward to set up and use, making the transition from concept to CAD model smoother and faster than traditional methods.
20+
To use the Text-to-CAD Blender add-on, users need to have [Blender](https://www.blender.org/) installed and acquire an [API token from Zoo.dev](https://zoo.dev/account#developer). The add-on is straightforward to set up and use, making the transition from concept to CAD model smoother and faster than traditional methods.
2121
### Key Features
2222
- **Easy Integration**: Fits smoothly into the native Blender workflow of installing add-ons and includes a keyboard shortcut.
2323
- **Multiple Formats**: Supports various output formats, catering to different project requirements. The files generated by this plugin and Text-to-CAD are always available from your [dashboard](https://text-to-cad.zoo.dev/dashboard).

content/tutorials/websocket-tutorial.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ excerpt: This tutorial is a step-by-step walkthrough of using the modeling API t
44
langs: ['py']
55
---
66

7-
This tutorial is a step-by-step walkthrough that demonstrates how to use our design API (KittyCAD) to design a cube and take a snapshot of it for you to view. This tutorial will be using Python, but you can use any language that supports websockets. If you would like to download the full code as a reference, you can <a href="/code-samples/websocketexample.py" download="kittycad-websocket.py">download it here</a>.
7+
This tutorial is a step-by-step walkthrough that demonstrates how to use our design API (KittyCAD) to design a cube and take a snapshot of it for you to view. This tutorial will be using Python, but you can use any language that supports websockets. If you would like to download the full code as a reference, you can <a href="/litterbox_assets/tutorials/websocket_tutorial/websocketexample.py" download="kittycad-websocket.py">download it here</a>.
88

99
## References
1010

0 commit comments

Comments
 (0)