Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VTK Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VTK
VTK Examples
Commits
0e9b47d2
Commit
0e9b47d2
authored
6 years ago
by
Bharatesh Chakravarthi S B
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Create AddCell.java
Former-commit-id:
c70f3450
parent
e8517eef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Java/Meshes/AddCell.java
+55
-0
55 additions, 0 deletions
src/Java/Meshes/AddCell.java
with
55 additions
and
0 deletions
src/Java/Meshes/AddCell.java
0 → 100644
+
55
−
0
View file @
0e9b47d2
import
vtk.vtkNativeLibrary
;
import
vtk.vtkPoints
;
import
vtk.vtkTriangle
;
import
vtk.vtkCellArray
;
import
vtk.vtkPolyData
;
public
class
AddCell
{
// -----------------------------------------------------------------
// Load VTK library and print which library was not properly loaded
static
{
if
(!
vtkNativeLibrary
.
LoadAllNativeLibraries
())
{
for
(
vtkNativeLibrary
lib
:
vtkNativeLibrary
.
values
())
{
if
(!
lib
.
IsLoaded
())
{
System
.
out
.
println
(
lib
.
GetLibraryName
()
+
" not loaded"
);
}
}
}
vtkNativeLibrary
.
DisableOutputWindow
(
null
);
}
// -----------------------------------------------------------------
public
static
void
main
(
String
args
[])
{
// Create a triangle
vtkPoints
points
=
new
vtkPoints
();
points
.
InsertNextPoint
(
1.0
,
0.0
,
0.0
);
points
.
InsertNextPoint
(
0.0
,
0.0
,
0.0
);
points
.
InsertNextPoint
(
0.0
,
1.0
,
0.0
);
vtkTriangle
triangle
=
new
vtkTriangle
();
triangle
.
GetPointIds
().
SetId
(
0
,
0
);
triangle
.
GetPointIds
().
SetId
(
1
,
1
);
triangle
.
GetPointIds
().
SetId
(
2
,
2
);
vtkCellArray
triangles
=
new
vtkCellArray
();
triangles
.
InsertNextCell
(
triangle
);
// Create a polydata object
vtkPolyData
polyData
=
new
vtkPolyData
();
// Add the geometry and topology to the polydata
polyData
.
SetPoints
(
points
);
polyData
.
SetPolys
(
triangles
);
System
.
out
.
println
(
"There are "
+
" "
+
polyData
.
GetNumberOfCells
()
+
" "
+
"cells."
);
polyData
.
GetPolys
().
InsertNextCell
(
triangle
);
System
.
out
.
println
(
"There are "
+
" "
+
polyData
.
GetNumberOfCells
()
+
" "
+
"cells."
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment