How to project object onto a plane

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 :frowning: 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 :slight_smile:

МнС Π½ΡƒΠΆΠ½Π° проСкция ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π° Π½Π° ΠΏΠ»ΠΎΡΠΊΠΎΡΡ‚ΡŒ ΠΈΠ»ΠΈ проСкция ΠΊΠΎΠ½Ρ‚ΡƒΡ€Π° ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π° Π½Π° ΠΏΠ»ΠΎΡΠΊΠΎΡΡ‚ΡŒ.

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 ?

1 Like

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)]

Π•ΠΊΡ€Π°Π½Π½Π° снимка (Screenshot)

1 Like