]> luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/rib.js
Initial commit.
[flow-web.git] / static / highlight / es / languages / rib.js
1 /*! `rib` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar = (function () {
3 'use strict';
4
5 /*
6 Language: RenderMan RIB
7 Author: Konstantin Evdokimenko <qewerty@gmail.com>
8 Contributors: Shuen-Huei Guan <drake.guan@gmail.com>
9 Website: https://renderman.pixar.com/resources/RenderMan_20/ribBinding.html
10 Category: graphics
11 */
12
13 function rib(hljs) {
14 return {
15 name: 'RenderMan RIB',
16 keywords:
17 'ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis '
18 + 'Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone '
19 + 'CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail '
20 + 'DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format '
21 + 'FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry '
22 + 'Hider Hyperboloid Identity Illuminate Imager Interior LightSource '
23 + 'MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte '
24 + 'MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option '
25 + 'Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples '
26 + 'PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection '
27 + 'Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow '
28 + 'ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere '
29 + 'SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd '
30 + 'TransformPoints Translate TrimCurve WorldBegin WorldEnd',
31 illegal: '</',
32 contains: [
33 hljs.HASH_COMMENT_MODE,
34 hljs.C_NUMBER_MODE,
35 hljs.APOS_STRING_MODE,
36 hljs.QUOTE_STRING_MODE
37 ]
38 };
39 }
40
41 return rib;
42
43 })();
44 ;
45 export default hljsGrammar;