how to delete selected faces of objects ?

hi

how to delete selected faces of objects ?

thanks.

select objects

for i = 1 to selection.count do
(

)

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
stark's picture

THANK YOU !!

Thank you guy's works So fine ! :)

miauu's picture

.

polyop.deleteFaces <Poly poly> <facelist> delIsoVerts:<boolean=true>
barigazy's picture

...

with redraw off
(
	if (object = getCurrentSelection()).count != 0 do
	(
		clearselection()
		deleteface = polyop.deleteFaces 
		for node in object where isKindOf node Editable_Poly and not (fList = node.selectedfaces as bitarray).isEmpty do deleteFace node fList
	)
)

bga

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.