[VEX for Algorithmic Design] E21 _ Half-Edge Basics

  Рет қаралды 11,854

Junichiro Horikawa

Junichiro Horikawa

Күн бұрын

This is a new series I've started explaining the basics of VEX for algorithmic design / procedural modeling which I'm using on daily basis.
In this 21st episode, I'm explaining the basics of half-edge structure in Houdini and how you can use it together with VEX for several computational geometry purposes.
I've also started a Patreon, it would be great if I could get your support to continue creating tutorial contents.
00:00:00 Intro / What is Half-Edge?
00:07:09 Half-Edge from Point 1
00:14:55 Half-Edge from Point 2
00:20:48 Check Half-Edge Validity
00:23:55 Next / Previous Half-Edge
00:32:20 Next Equivalent Half-Edge
00:41:22 Exercise - Dual Mesh
00:58:46 Exercise - Mesh Subdivision
01:12:36 Exercise - Mesh Bevel
02:11:14 Next Topic - Remapping
[Project Data Downloads]
github.com/jhorikawa/VEXForAl...
[Patreon page]
/ junichirohorikawa
[Episodes]
Episode 1 - Attribute Basics: • [VEX for Algorithmic D...
Episode 2 - Group Basics: • [VEX for Algorithmic D...
Episode 3 - Parameter Basics: • [VEX for Algorithmic D...
Episode 4 - Variables and Operations: • [VEX for Algorithmic D...
Episode 5 - Array: • [VEX for Algorithmic D...
Episode 6 - Strings: • [VEX for Algorithmic D...
Episode 7 - Loop: • [VEX for Algorithmic D...
Episode 8 - Conditional: • [VEX for Algorithmic D...
Episode 9 - Function: • [VEX for Algorithmic D...
Episode 10 - Volume Basics: • [VEX for Algorithmic D...
Episode 11 - Dictionary Basics: • [VEX for Algorithmic D...
Episode 12 - Vector Basics: • [VEX for Algorithmic D...
Episode 13 - Trigonometry Basics: • [VEX for Algorithmic D...
Episode 14 - Quaternion Basics: • [VEX for Algorithmic D...
Episode 15 - Matrix Basics 1: • [VEX for Algorithmic D...
Episode 16 - Geometry Functions: • [VEX for Algorithmic D...
Episode 17 - Intrinsic Attribute: • [VEX for Algorithmic D...
Episode 18 - Randomness Basics: • [VEX for Algorithmic D...
Episode 19 - Noise Basics: • [VEX for Algorithmic D...
Episode 20 - Solver Basics: • [VEX for Algorithmic D...
Episode 21 - Half-Edge Basics • [VEX for Algorithmic D...
Episode 22 - Remapping Basics: • [VEX for Algorithmic D...
Episode 23 - SDF Basics: • [VEX for Algorithmic D...
Episode 24 - Force Basics: • [VEX for Algorithmic D...
Episode 25 - Force Extended: • [VEX for Algorithmic D...
Episode 26 - Recursion Basics: • [VEX for Algorithmic D...
[Houdini Related Playlists]
VEX for Algorithmic Design: • VEX for Algorithmic De...
Houdini Tutorial: • Houdini Tutorials
Houdini Algorithmic Live: • Houdini Algorithmic Live
Houdini Snippets: • Houdini Snippets
Houdini Tips: • Playlist
[Portal Page]
Facebook Page: / parametricproceduralho...
[Books]
Algorithmic Design Workbook with Houdini: gum.co/GOZFw
Tiling Pattern with Houdini: gumroad.com/l/OVDgY
Algorithmic Design with Houdini: www.bnn.co.jp/books/9788/
Books on BOOTH: orangejellies.booth.pm/
[Contact]
Twitter: / jhorikawa_err

Пікірлер: 18
@marvelouswalrus949
@marvelouswalrus949 3 жыл бұрын
Not only do you possess a ton of knowledge. You are also very creative. On top of that, you have the gift of explaining things in a manner that is crystal clear and understandable. Your tutorials are simply outstanding. A HUGE thank you again, Junichiro!
@srivignesh35
@srivignesh35 3 жыл бұрын
Excellent! you are doing gods work Junichiro.
@eonblue46
@eonblue46 3 жыл бұрын
lol so true
@tylerbakeman
@tylerbakeman 5 ай бұрын
A Half-edge in a Graph, of a Vertex, usually relates to another vertex - which can be introverted | extroverted - describing if the vertex is “prev” | “next”. This rendering technique that you’re referencing applies a use for Half-edges in theory, but the standard for rendering Meshes doesn’t: We typically store Mesh data by 1) A tuple of vertices 2) A tuple of faces 3) A tuple of normals (not always, but usually) … sometimes more… Where a Face literally stores the Path (sequence) of vertices of the face - assuming they are coplanar. Example: Mesh = { Vertices = { A,B,C,D,E,F,G,H } Faces = { Face( A,B,D,C ), … Face( A,B,F,E ) // or something … etc } } So, I wouldn’t say you’re technically using Half-edges, as Meshes dont typically get stored in Graphs - even if they ARE easy to represent w/ graphs… Although, there could be other benefits to your model. Consider the idea of a Hyper-edge in a Hyper-Graph… It tends to save storage over Usual-edges. Because of degree… A usual graph edge stores a copy of each vertex (not necessarily a hard copy, but still). Each vertex has a personal number of edges (called its degree), which is also how many copies of an edge exist in a Graph. Hyper-edges store more vertices, reducing the total number of edges, which reduces the degree (sometimes / usually) - which reduces the number of copies, and saves memory. An example is having an “N-clique” being replaced with a Hyper-edge with N vertices. The N-clique has a lot more copies… so Hyper-edges save memory. The “Half-edge” is probably called something different in this context, but is probably a lot more useful in this context… To my understanding, Hyper-vertex partial-edges can be introverted | extroverted, which is how we segregate “prev” and “next”. Therefore, there is arguably still a “Tail” and “Head” of the Hyper-edge - but now those Tail and Head aspects are collections, instead of a single vertex. Because of this- it is still possible to perform Multi-partite ‘color mapping’ (idk the technical term) from one color to the next- because the Tail and Head could correspond to colors in a Bipartite structure. Something like that… Anyway… Cheers.
@FaitelTech
@FaitelTech 3 жыл бұрын
Thank you, Junichiro. I had a lot of joy learning half-edges concept along your video. I've already spent so much time doing workaround from edges using functions for prims and points because didn't understand the concept when read documentation by myself, that your video is like a blessing. Also, I think it could be so much easier if Houdini had markers and dedicated Geometry Spreadsheet page for half-edges.
@dilosilv611
@dilosilv611 Жыл бұрын
As well as for edges.
@Mega-Dinosaurs
@Mega-Dinosaurs Жыл бұрын
Nice, tutorial completed
@MrSlapcup
@MrSlapcup 2 жыл бұрын
brilliant stuff.. thank you.
@zeshichen6134
@zeshichen6134 2 жыл бұрын
Thank you so much. I recently went through the vex document in details. So, I wonder what I can do with hedge. Your video is such a good example showing its power. This video does help me a lot.
@frassmicce
@frassmicce 3 жыл бұрын
fantastic as usual! On my way to procedural mastery.
@ianmcglasham
@ianmcglasham 2 жыл бұрын
excellent.
@abhishek.vermaaa
@abhishek.vermaaa 3 жыл бұрын
Please make a video about Expression functions and how they work inside Houdini. I know it's a very basic topic but I haven't found any video properly explaining it.
@bekabaratashvili3178
@bekabaratashvili3178 3 жыл бұрын
AAAWESOME!
@andrascelentano3519
@andrascelentano3519 3 жыл бұрын
Hello. So based on this , would it be possible, to create a polygon mesh based on floating points? Like in 2D you can use traingulate2D, but use it on a non grid like cases?
@acanimationfilmstudio1018
@acanimationfilmstudio1018 9 ай бұрын
Hey is it possible if I can get any material from you about the implementation of half edge
@mrpig4286
@mrpig4286 3 жыл бұрын
good job ! i am curious why your English is so good as a Japanese ? i am Chinese and i want to know how to learn English could achieve your level?
@requa3314
@requa3314 3 жыл бұрын
@webgpu
@webgpu Жыл бұрын
it is not practical. too slow. the last example showed a torus with +/- a thousand vertices, but i need processing of geometries from 10k to 100k vertices. i'm still using simple indexed vertices instead of half edges. Maybe, half edge calculations would be practical if they're done in the gpu.
[VEX for Algorithmic Design] E22 _ Remapping Basics
2:20:54
Junichiro Horikawa
Рет қаралды 6 М.
Iterative Closest Point (ICP) - Computerphile
16:25
Computerphile
Рет қаралды 134 М.
I Need Your Help..
00:33
Stokes Twins
Рет қаралды 44 МЛН
How I prepare to meet the brothers Mbappé.. 🙈 @KylianMbappe
00:17
Celine Dept
Рет қаралды 40 МЛН
[柴犬ASMR]曼玉Manyu&小白Bai 毛发护理Spa asmr
01:00
是曼玉不是鳗鱼
Рет қаралды 37 МЛН
CAN YOU HELP ME? (ROAD TO 100 MLN!) #shorts
00:26
PANDA BOI
Рет қаралды 31 МЛН
[VEX for Algorithmic Design] E24 _ Force Basics
1:09:16
Junichiro Horikawa
Рет қаралды 9 М.
Change Your Understanding of Topology In Six Minutes
6:58
DECODED
Рет қаралды 905 М.
[VEX for Algorithmic Design] E08 _ Conditional
1:27:09
Junichiro Horikawa
Рет қаралды 10 М.
What 3D Gaussian Splatting is not?
8:21
Olli Huttunen
Рет қаралды 89 М.
High level overview of the HalfEdge
19:12
Neverengine Graphics
Рет қаралды 2,9 М.
Lecture 10: Meshes and Manifolds (CMU 15-462/662)
1:07:52
Keenan Crane
Рет қаралды 13 М.
[VEX for Algorithmic Design] E06 _ Strings
1:00:05
Junichiro Horikawa
Рет қаралды 12 М.
[VEX for Algorithmic Design] E05 _ Array
43:45
Junichiro Horikawa
Рет қаралды 18 М.
[VEX for Algorithmic Design] E14 _ Quaternion Basics
1:41:09
Junichiro Horikawa
Рет қаралды 21 М.
Very Best And Good Price Smart Phone
0:42
SDC Editing Zone 9K
Рет қаралды 217 М.
Я Создал Новый Айфон!
0:59
FLV
Рет қаралды 4,3 МЛН
Чем отличается OLED от AMOLED?
0:43
Не шарю!
Рет қаралды 709 М.
What’s your charging level??
0:14
Татьяна Дука
Рет қаралды 6 МЛН
Nokia 3310 versus Red Hot Ball
0:37
PressTube
Рет қаралды 2,7 МЛН