HI!
How I can get projection object mesh on plane?
Are you wanting to project a mesh onto a plane? You do this with the shrink wrap modifier:
Or are you wanting to cut out a plane using a mesh as the projection cutting object? You do this with knife project:
In thislinks no solution.
When object is active, I see orange contour. Maybe I can get projection thin contour on plane βxβ?
Iβm honestly not sure what youβre asking, sorry it looks like your native language is a Cyrillic language, could you try posting your question in your preferred language? We have some members here who should be able to read it and help you better
ΠΠ½Π΅ Π½ΡΠΆΠ½Π° ΠΏΡΠΎΠ΅ΠΊΡΠΈΡ ΠΎΠ±ΡΠ΅ΠΊΡΠ° Π½Π° ΠΏΠ»ΠΎΡΠΊΠΎΡΡΡ ΠΈΠ»ΠΈ ΠΏΡΠΎΠ΅ΠΊΡΠΈΡ ΠΊΠΎΠ½ΡΡΡΠ° ΠΎΠ±ΡΠ΅ΠΊΡΠ° Π½Π° ΠΏΠ»ΠΎΡΠΊΠΎΡΡΡ.
Having re-translated this online to:
I need a projection of an object onto a plane or a projection of an objectβs contour onto a plane.
I think @joseph was right⦠have a look at StachExchange: project-3d-object-on-a-plane. Or do you really need a python solution ?
Me need python solution
A yes i see. Then of course this question make sense to be posted in Python supportβ¦ Sorry canβt help here.
Π±ΡΠ»Π³Π°ΡΡΠΊΠΈ (Bulgarian)
Π’ΠΎΠ·ΠΈ ΠΊΠΎΠ΄ ΡΠ΅:
- ΠΠΎΠ±Π°Π²Π΅ΡΠ΅ ΠΌΠΎΠ΄ΠΈΡΠΈΠΊΠ°ΡΠΎΡ Π½Π° ΡΠ²ΠΈΠ²Π°Π½Π΅ ΠΊΡΠΌ ΠΎΠ±Π΅ΠΊΡ, ΠΏΠΎΡΠΎΡΠ΅Π½ Π² Π½ΠΈΠ·ΠΎΠ²Π°ΡΠ° ΠΏΡΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π° obj_host
- ΠΡΠΈΡΠ²ΠΎΠ΅ΡΠ΅ ΠΎΠ±Π΅ΠΊΡΠ½Π° ΡΠ΅Π» Π½Π° Π½ΠΎΠ²ΠΎΡΡΠ·Π΄Π°Π΄Π΅Π½ΠΈΡ ΠΌΠΎΠ΄ΠΈΡΠΈΠΊΠ°ΡΠΎΡ, ΠΊΠ°ΡΠΎ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΡΠ΅ Π½ΠΈΠ·ΠΎΠ²Π°ΡΠ° ΠΏΡΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π° obj_target
ΠΠ½Π³Π»ΠΈΠΉΡΠΊΠΈ (English)
This code will:
- Add a shrink modifier to a object stated in the string variable obj_host
- Assign a object target to the newly created modifier by using the string variable obj_target
Π‘ΠΊΡΠΈΠΏΡ (Script)
import bpy
obj_host = "Suzanne"
obj_target = "Plane"
modifier = bpy.data.objects[str(obj_host)].modifiers.new(name="SHRINKWRAP", type="SHRINKWRAP")
modifier.target = bpy.data.objects[str(obj_target)]