Skip to content

Commit 670ae7a

Browse files
Update modifiers.md
1 parent 12b72f3 commit 670ae7a

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

documentation/modifiers.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,20 @@ shapes and effects.
99

1010
By following these guidelines and understanding the core concepts of mesh modifiers, you can create a wide range of 3D models and effects.
1111

12-
The library offers a versatile set of pre-built modifiers, each adhering to the IMeshModifier interface. If you aim to extend the library with custom modifiers, ensuring adherence to this interface is crucial.
12+
The library offers a versatile set of pre-built modifiers, each adhering to the ```IMeshModifier``` interface.
13+
If you aim to extend the library with custom modifiers, ensuring adherence to this interface is crucial.
14+
15+
```java
16+
package mesh.modifier;
17+
18+
import mesh.Mesh3D;
19+
20+
public interface IMeshModifier {
21+
22+
public Mesh3D modify(Mesh3D mesh);
23+
24+
}
25+
```
1326

1427
**Applying Modifications**
1528

0 commit comments

Comments
 (0)