Skip to main content

All Questions

0 votes
1 answer
60 views

Geometry Nodes: Set Curve Line end at Global Z=0 (Blender 3.5.1)

I'm trying to use geometry nodes to create a support system for 3D printing with a thin wall as the connection point: What I want to do is have columns going from the B points down to the floor at ...
Cornivius's user avatar
  • 1,886
2 votes
1 answer
335 views

Mapping Real World coordinates on 3D model of Earth

complete Blender noob here. I've worked with other node-based programs in the past so the geometry nodes seem (for the most part) intuitive to me. But Blender is obviously a different kind of beast... ...
Sascha's user avatar
  • 23
0 votes
1 answer
432 views

Script to import coordinates and create a bezier curve

I would like to create a script to import coordinates from a CSV and create a bezier curve along these coordinates. I have developed a script that imports the coordinates, but it creates a curve along ...
blenre231's user avatar
0 votes
1 answer
156 views

Plotting multiple, separate, closed Bezier objects from dataset of xyz coordinates

I am new to blender and am using python within blender to do the following: Read in list of coordinate data for bezier curve objects - DONE For each unique object within the dataset, take that ...
Ben's user avatar
  • 11
1 vote
2 answers
4k views

Get points of Bezier Curve in coordinate space of the scene

Sorry if the title is confusing, I wasn't sure how to best describe what I am trying to do. Basically, I'm trying to create Bezier Curves that "grow" off of each other. For example, I would make one ...
switchup621's user avatar
1 vote
1 answer
2k views

Cannot rotate a camera on a motion path that is targeted to an empty.

I am fairly new to Blender and have run into a problem I cannot seem to overcome. I have a camera on a horizontal, semi-circular motion path and it moves nicely around an object. The camera is ...
todd's user avatar
  • 23
5 votes
1 answer
2k views

python script to read in .csv file containing quaternion coordinates and turn it into a path/curve for an object to follow

I am a highschool student working at a college's engineering department for the summer. I just began working in blender and have intermediate knowledge of python. Could anyone share a script that: ...
Alyssa Shorak's user avatar
2 votes
0 answers
87 views

Draw a curve through coordinates [duplicate]

I have an excel files of coordinates. There's a lot of coordinates so slowly plot them one by one is not practical? Is there anyway to create a curve though them automatically? Thanks lots and really ...
Tran Quang Son's user avatar
5 votes
2 answers
2k views

Calculate points on a Nurbs curve without converting to mesh

I found this question: Getting the list of points that describe a Curve without converting to mesh But I would like to do the same for a Nurbs curve. This Nurbs curve consists of a lot of splines and ...
jasperge's user avatar
  • 1,945
5 votes
1 answer
16k views

python script that reads text file containing coordinates and creates a path/curve for object to follow

I am a highschool student working at a college's engineering department for the summer. I just began working in blender and have intermediate knowledge of python. Could anyone share a script they've ...
Alyssa Shorak's user avatar
13 votes
1 answer
17k views

Poly / Bezier curve from a list of coordinates

I'm trying to create curves from a list of points, I have the xyz coordinates in text files. I could make it manually via the python console for a single curve, but I have to do it many times and I ...
Matteo Caffini's user avatar
6 votes
1 answer
5k views

Getting the list of points that describe a Curve without converting to mesh

I've used mathutils.geometry.interpolate_bezier() in the past to create points for a curve using the bezier handle and knot coordinates. from the docs: ...
zeffii's user avatar
  • 39.7k